码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode: Nested List Weight Sum II

时间:2016-12-15 09:14:29      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:sem   this   arraylist   blog   ret   one   either   ons   var   

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)

Inspired by: https://discuss.leetcode.com/topic/49041/no-depth-variable-no-multiplication

Instead of multiplying by depth, add integers multiple times

 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 public class Solution {
30     public int depthSumInverse(List<NestedInteger> nestedList) {
31         int weightedSum = 0, levelSum = 0;
32         while (!nestedList.isEmpty()) {
33             List<NestedInteger> nextLvl = new ArrayList<>();
34             for (NestedInteger ni : nestedList) {
35                 if (ni.isInteger()) levelSum += ni.getInteger();
36                 nextLvl.addAll(ni.getList());
37             }
38             weightedSum += levelSum;
39             nestedList = nextLvl;
40         }
41         return weightedSum;
42     }
43 }

 

Leetcode: Nested List Weight Sum II

标签:sem   this   arraylist   blog   ret   one   either   ons   var   

原文地址:http://www.cnblogs.com/EdwardLiu/p/6181826.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!