結果
問題 | No.1463 Hungry Kanten |
ユーザー | tenten |
提出日時 | 2023-08-04 09:01:31 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 622 ms / 2,000 ms |
コード長 | 2,572 bytes |
コンパイル時間 | 2,779 ms |
コンパイル使用メモリ | 84,700 KB |
実行使用メモリ | 96,468 KB |
最終ジャッジ日時 | 2024-10-14 06:03:04 |
合計ジャッジ時間 | 6,494 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,240 KB |
testcase_01 | AC | 56 ms
50,412 KB |
testcase_02 | AC | 104 ms
53,836 KB |
testcase_03 | AC | 280 ms
78,640 KB |
testcase_04 | AC | 59 ms
50,384 KB |
testcase_05 | AC | 622 ms
96,468 KB |
testcase_06 | AC | 57 ms
50,424 KB |
testcase_07 | AC | 57 ms
50,404 KB |
testcase_08 | AC | 56 ms
49,984 KB |
testcase_09 | AC | 55 ms
50,112 KB |
testcase_10 | AC | 57 ms
50,196 KB |
testcase_11 | AC | 58 ms
50,448 KB |
testcase_12 | AC | 58 ms
50,412 KB |
testcase_13 | AC | 59 ms
50,464 KB |
testcase_14 | AC | 83 ms
51,388 KB |
testcase_15 | AC | 70 ms
51,248 KB |
testcase_16 | AC | 106 ms
54,144 KB |
testcase_17 | AC | 143 ms
57,156 KB |
testcase_18 | AC | 120 ms
57,508 KB |
testcase_19 | AC | 323 ms
74,736 KB |
testcase_20 | AC | 444 ms
95,068 KB |
testcase_21 | AC | 58 ms
50,580 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; import java.math.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); int[] values = new int[n]; BigInteger[] inputs = new BigInteger[n]; for (int i = 0; i < n; i++) { values[i] = sc.nextInt(); inputs[i] = BigInteger.valueOf(values[i]); } int[] sums = new int[1 << n]; BigInteger[] nums = new BigInteger[1 << n]; nums[0] = BigInteger.valueOf(1); HashSet<BigInteger> ans = new HashSet<>(); for (int i = 1; i < (1 << n); i++) { for (int j = 0; j < n; j++) { if ((i & (1 << j)) > 0) { sums[i] = sums[i ^ (1 << j)] + values[j]; nums[i] = nums[i ^ (1 << j)].multiply(inputs[j]); break; } } if (getPop(i) >= k) { ans.add(BigInteger.valueOf(sums[i])); ans.add(nums[i]); } } System.out.println(ans.size()); } static int getPop(int x) { int pop = 0; while (x > 0) { pop += x % 2; x >>= 1; } return pop; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }