|
| 1 | +# 339. [Nested List Weight Sum](<https://leetcode.com/problems/nested-list-weight-sum>) |
| 2 | + |
| 3 | +*First completed: July 02, 2024* |
| 4 | + |
| 5 | +*Last updated: July 02, 2024* |
| 6 | + |
| 7 | + |
| 8 | +> *To see the question prompt, click the title.* |
| 9 | +
|
| 10 | +**Topics:** Depth-First Search, Breadth-First Search |
| 11 | + |
| 12 | +**AC %:** 83.833 |
| 13 | + |
| 14 | + |
| 15 | +## Solutions |
| 16 | + |
| 17 | +- [m339.c](<../my-submissions/m339.c>) |
| 18 | +- [m339.py](<../my-submissions/m339.py>) |
| 19 | +### C |
| 20 | +#### [m339.c](<../my-submissions/m339.c>) |
| 21 | +```C |
| 22 | +/** |
| 23 | + * ********************************************************************* |
| 24 | + * // This is the interface that allows for creating nested lists. |
| 25 | + * // You should not implement it, or speculate about its implementation |
| 26 | + * ********************************************************************* |
| 27 | + * |
| 28 | + * // Initializes an empty nested list and return a reference to the nested integer. |
| 29 | + * struct NestedInteger *NestedIntegerInit(); |
| 30 | + * |
| 31 | + * // Return true if this NestedInteger holds a single integer, rather than a nested list. |
| 32 | + * bool NestedIntegerIsInteger(struct NestedInteger *); |
| 33 | + * |
| 34 | + * // Return the single integer that this NestedInteger holds, if it holds a single integer |
| 35 | + * // The result is undefined if this NestedInteger holds a nested list |
| 36 | + * int NestedIntegerGetInteger(struct NestedInteger *); |
| 37 | + * |
| 38 | + * // Set this NestedInteger to hold a single integer. |
| 39 | + * void NestedIntegerSetInteger(struct NestedInteger *ni, int value); |
| 40 | + * |
| 41 | + * // Set this NestedInteger to hold a nested list and adds a nested integer elem to it. |
| 42 | + * void NestedIntegerAdd(struct NestedInteger *ni, struct NestedInteger *elem); |
| 43 | + * |
| 44 | + * // Return the nested list that this NestedInteger holds, if it holds a nested list |
| 45 | + * // The result is undefined if this NestedInteger holds a single integer |
| 46 | + * struct NestedInteger **NestedIntegerGetList(struct NestedInteger *); |
| 47 | + * |
| 48 | + * // Return the nested list's size that this NestedInteger holds, if it holds a nested list |
| 49 | + * // The result is undefined if this NestedInteger holds a single integer |
| 50 | + * int NestedIntegerGetListSize(struct NestedInteger *); |
| 51 | + * }; |
| 52 | + */ |
| 53 | +int helper(struct NestedInteger* curr, int multiplier) { |
| 54 | + if (NestedIntegerIsInteger(curr)) { |
| 55 | + return multiplier * NestedIntegerGetInteger(curr); |
| 56 | + } |
| 57 | + |
| 58 | + int lstSize = NestedIntegerGetListSize(curr); |
| 59 | + struct NestedInteger** lst = NestedIntegerGetList(curr); |
| 60 | + |
| 61 | + int output = 0; |
| 62 | + for (int i = 0; i < lstSize; i++) { |
| 63 | + output += helper(lst[i], multiplier + 1); |
| 64 | + } |
| 65 | + |
| 66 | + return output; |
| 67 | +} |
| 68 | + |
| 69 | +int depthSum(struct NestedInteger** nestedList, int nestedListSize) { |
| 70 | + int output = 0; |
| 71 | + for (int i = 0; i < nestedListSize; i++) { |
| 72 | + output += helper(nestedList[i], 1); |
| 73 | + } |
| 74 | + return output; |
| 75 | +} |
| 76 | +``` |
| 77 | +
|
| 78 | +### Python |
| 79 | +#### [m339.py](<../my-submissions/m339.py>) |
| 80 | +```Python |
| 81 | +# """ |
| 82 | +# This is the interface that allows for creating nested lists. |
| 83 | +# You should not implement it, or speculate about its implementation |
| 84 | +# """ |
| 85 | +#class NestedInteger: |
| 86 | +# def __init__(self, value=None): |
| 87 | +# """ |
| 88 | +# If value is not specified, initializes an empty list. |
| 89 | +# Otherwise initializes a single integer equal to value. |
| 90 | +# """ |
| 91 | +# |
| 92 | +# def isInteger(self): |
| 93 | +# """ |
| 94 | +# @return True if this NestedInteger holds a single integer, rather than a nested list. |
| 95 | +# :rtype bool |
| 96 | +# """ |
| 97 | +# |
| 98 | +# def add(self, elem): |
| 99 | +# """ |
| 100 | +# Set this NestedInteger to hold a nested list and adds a nested integer elem to it. |
| 101 | +# :rtype void |
| 102 | +# """ |
| 103 | +# |
| 104 | +# def setInteger(self, value): |
| 105 | +# """ |
| 106 | +# Set this NestedInteger to hold a single integer equal to value. |
| 107 | +# :rtype void |
| 108 | +# """ |
| 109 | +# |
| 110 | +# def getInteger(self): |
| 111 | +# """ |
| 112 | +# @return the single integer that this NestedInteger holds, if it holds a single integer |
| 113 | +# Return None if this NestedInteger holds a nested list |
| 114 | +# :rtype int |
| 115 | +# """ |
| 116 | +# |
| 117 | +# def getList(self): |
| 118 | +# """ |
| 119 | +# @return the nested list that this NestedInteger holds, if it holds a nested list |
| 120 | +# Return None if this NestedInteger holds a single integer |
| 121 | +# :rtype List[NestedInteger] |
| 122 | +# """ |
| 123 | +
|
| 124 | +class Solution: |
| 125 | + def depthSum(self, nestedList: List[NestedInteger]) -> int: |
| 126 | + def helper(multiplier: int, curr: NestedInteger) -> int : |
| 127 | + if curr.isInteger() : |
| 128 | + return multiplier * curr.getInteger() |
| 129 | +
|
| 130 | + output = 0 |
| 131 | + for i in curr.getList() : |
| 132 | + output += helper(multiplier + 1, i) |
| 133 | + return output |
| 134 | +
|
| 135 | + return sum([helper(1, x) for x in nestedList]) |
| 136 | +``` |
| 137 | + |
0 commit comments