题解 | #称砝码#

称砝码

https://www.nowcoder.com/practice/f9a4c19050fc477e9e27eb75f3bfd49c

// 值得mark一下

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextLine()) { // 注意 while 处理多个 case
            int n = Integer.valueOf(in.nextLine());
            String[] ws = in.nextLine().split(" ");
            String[] ns = in.nextLine().split(" ");
            int[] weight = new int[n];
            int[] num = new int[n];
            for (int i = 0; i < n; i++) {
                weight[i] = Integer.valueOf(ws[i]);
                num[i] = Integer.valueOf(ns[i]);
            }

            Set<Integer> ansSet = new HashSet<>();
            ansSet.add(0);
            for (int i = 0; i < n; i++) {
                List<Integer> oldAns = new ArrayList<>(ansSet);
                for (int j = 0; j <= num[i]; j++) {
                    for (int x : oldAns) {
                        ansSet.add(x + j * weight[i]);
                    }
                }
            }

            System.out.println(ansSet.size());
        }
    }
}

全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
牛客339922477号:都不用reverse,直接-1。一行。啥送分题
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务