LeetCode 364. Nested List Weight Sum II

原题链接在这里:https://leetcode.com/problems/nested-list-weight-sum-ii/description/

题目:

Given a nested list of integers, return the sum of all integers in the list weighted by their depth.

Each element is either an integer, or a list -- whose elements may also be integers or other lists.

Different from the previous question where weight is increasing from root to leaf, now the weight is defined from bottom up. i.e., the leaf level integers have weight 1, and the root level integers have the largest weight.

Example 1:
Given the list [[1,1],2,[1,1]], return 8. (four 1's at depth 1, one 2 at depth 2)

Example 2:
Given the list [1,[4,[6]]], return 17. (one 1 at depth 3, one 4 at depth 2, and one 6 at depth 1; 1*3 + 4*2 + 6*1 = 17)

题解:

The question is asking for weight sum. The top level has largest depth.

Thus the top level need to be added maximum depth times.

We could accumlate the sum of Integer of the current level, add it to the res.

For next level, we could continue adding Integer to the same sum, add it to the res. Then upper level sum is added multiple times.

Time Complexity: O(n+m). n 是flat后一共有多少个数字, 就像BFS的node数. m 是层数,就像BFS的edge数.

Space: O(n).

AC Java:

 1 /**
 2  * // This is the interface that allows for creating nested lists.
 3  * // You should not implement it, or speculate about its implementation
 4  * public interface NestedInteger {
 5  *     // Constructor initializes an empty nested list.
 6  *     public NestedInteger();
 7  *
 8  *     // Constructor initializes a single integer.
 9  *     public NestedInteger(int value);
10  *
11  *     // @return true if this NestedInteger holds a single integer, rather than a nested list.
12  *     public boolean isInteger();
13  *
14  *     // @return the single integer that this NestedInteger holds, if it holds a single integer
15  *     // Return null if this NestedInteger holds a nested list
16  *     public Integer getInteger();
17  *
18  *     // Set this NestedInteger to hold a single integer.
19  *     public void setInteger(int value);
20  *
21  *     // Set this NestedInteger to hold a nested list and adds a nested integer to it.
22  *     public void add(NestedInteger ni);
23  *
24  *     // @return the nested list that this NestedInteger holds, if it holds a nested list
25  *     // Return null if this NestedInteger holds a single integer
26  *     public List<NestedInteger> getList();
27  * }
28  */
29 class Solution {
30     public int depthSumInverse(List<NestedInteger> nestedList) {
31         int weight = 0;
32         int unweight = 0;
33         while(!nestedList.isEmpty()){
34             List<NestedInteger> nextList = new ArrayList<NestedInteger>();
35             for(NestedInteger item : nestedList){
36                 if(item.isInteger()){
37                     unweight += item.getInteger();
38                 }else{
39                     nextList.addAll(item.getList());
40                 }
41             }
42             weight += unweight;
43             nestedList = nextList;
44         }
45         return weight;
46     }
47 }

Could also do DFS.

DFS return value needs both maximum depth and accumlated sum.

It does DFS bottom-up.

Time Complexity: O(n+m).

Space: O(n).

AC Java:

 1 /**
 2  * // This is the interface that allows for creating nested lists.
 3  * // You should not implement it, or speculate about its implementation
 4  * public interface NestedInteger {
 5  *     // Constructor initializes an empty nested list.
 6  *     public NestedInteger();
 7  *
 8  *     // Constructor initializes a single integer.
 9  *     public NestedInteger(int value);
10  *
11  *     // @return true if this NestedInteger holds a single integer, rather than a nested list.
12  *     public boolean isInteger();
13  *
14  *     // @return the single integer that this NestedInteger holds, if it holds a single integer
15  *     // Return null if this NestedInteger holds a nested list
16  *     public Integer getInteger();
17  *
18  *     // Set this NestedInteger to hold a single integer.
19  *     public void setInteger(int value);
20  *
21  *     // Set this NestedInteger to hold a nested list and adds a nested integer to it.
22  *     public void add(NestedInteger ni);
23  *
24  *     // @return the nested list that this NestedInteger holds, if it holds a nested list
25  *     // Return null if this NestedInteger holds a single integer
26  *     public List<NestedInteger> getList();
27  * }
28  */
29 class Solution {    
30     public int depthSumInverse(List<NestedInteger> nestedList) {
31         if(nestedList == null || nestedList.size() == 0){
32             return 0;
33         }
34         
35         int [] res = dfs(nestedList);
36         return res[1];
37     }
38     
39     private int [] dfs(List<NestedInteger> nestedList){
40         if(nestedList == null || nestedList.size() == 0){
41             return new int[]{0, 0};
42         }
43         
44         int levelSum = 0;
45         List<NestedInteger> nexts = new ArrayList<>();
46         for(NestedInteger ni : nestedList){
47             if(ni.isInteger()){
48                 levelSum += ni.getInteger();
49             }else{
50                 nexts.addAll(ni.getList());
51             }
52         }
53         
54         int [] arr = dfs(nexts);
55         return new int[]{arr[0]+1, levelSum*(arr[0]+1)+arr[1]};
56     }
57 }

AC Python:

 1 # """
 2 # This is the interface that allows for creating nested lists.
 3 # You should not implement it, or speculate about its implementation
 4 # """
 5 #class NestedInteger:
 6 #    def __init__(self, value=None):
 7 #        """
 8 #        If value is not specified, initializes an empty list.
 9 #        Otherwise initializes a single integer equal to value.
10 #        """
11 #
12 #    def isInteger(self):
13 #        """
14 #        @return True if this NestedInteger holds a single integer, rather than a nested list.
15 #        :rtype bool
16 #        """
17 #
18 #    def add(self, elem):
19 #        """
20 #        Set this NestedInteger to hold a nested list and adds a nested integer elem to it.
21 #        :rtype void
22 #        """
23 #
24 #    def setInteger(self, value):
25 #        """
26 #        Set this NestedInteger to hold a single integer equal to value.
27 #        :rtype void
28 #        """
29 #
30 #    def getInteger(self):
31 #        """
32 #        @return the single integer that this NestedInteger holds, if it holds a single integer
33 #        Return None if this NestedInteger holds a nested list
34 #        :rtype int
35 #        """
36 #
37 #    def getList(self):
38 #        """
39 #        @return the nested list that this NestedInteger holds, if it holds a nested list
40 #        Return None if this NestedInteger holds a single integer
41 #        :rtype List[NestedInteger]
42 #        """
43 
44 class Solution:
45     def depthSumInverse(self, nestedList: List[NestedInteger]) -> int:
46         def dfs(nestedList):
47             if not nestedList:
48                 return 0, 0
49             nexts = []
50             levelSum = 0
51             for ni in nestedList:
52                 if ni.isInteger():
53                     levelSum += ni.getInteger()
54                 else:
55                     nexts.extend(ni.getList())
56             nextDepth, nextSum = dfs(nexts)
57             return nextDepth + 1, nextSum + levelSum * (nextDepth + 1)
58         
59         return dfs(nestedList)[1]
60         

类似Nested List Weight Sum.

posted @ 2017-11-20 14:40  Dylan_Java_NYC  阅读(845)  评论(0编辑  收藏  举报