称砝码, 华为

Posted lixyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了称砝码, 华为相关的知识,希望对你有一定的参考价值。

在原有重量基础上增加一种重量的砝码,依次使用0,..., m【i】个,得到新的重量,将这些重量添加到集合中,继续重复。

import java.util.*;
public class Main {
    static int solution(int n, int[] m, int[] x){
        Set<Integer> set = new HashSet<>();
        set.add(0);
        for(int i=0; i < n; i++){
            List<Integer> list = new ArrayList<>();
            for(int j=0; j <= x[i]; j++) {
                int weight = j * m[i];
                for(int w : set) {
                    list.add(w + weight);
                }
            }
            for(int k=0; k < list.size(); k++)
                set.add(list.get(k));
        }
        return set.size();
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()){
            int n = sc.nextInt();
            int[] m = new int[n];
            int[] x = new int[n];
            for(int i=0; i < n; i++) 
                m[i] = sc.nextInt();
            for(int i=0; i < n; i++)
                x[i] = sc.nextInt();
            int res = solution(n, m, x);
            System.out.println(res);
        }
    }
}

以上是关于称砝码, 华为的主要内容,如果未能解决你的问题,请参考以下文章

#yyds干货盘点# 解决华为机试:称砝码

华为python机试题目:查找兄弟单词称砝码单词倒排购物单合并表记录

华为机试HJ41:称砝码(深度优先遍历dfs-Depth First Search)

[算法]天平称物

JZOJ 1252. 天平

秤砝码