結果
問題 | No.1701 half price |
ユーザー | tenten |
提出日時 | 2024-04-24 16:24:13 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 82 ms / 3,000 ms |
コード長 | 1,861 bytes |
コンパイル時間 | 3,372 ms |
コンパイル使用メモリ | 78,712 KB |
実行使用メモリ | 38,480 KB |
最終ジャッジ日時 | 2024-11-07 01:03:22 |
合計ジャッジ時間 | 5,186 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
37,204 KB |
testcase_01 | AC | 55 ms
37,340 KB |
testcase_02 | AC | 65 ms
37,468 KB |
testcase_03 | AC | 54 ms
37,000 KB |
testcase_04 | AC | 64 ms
37,448 KB |
testcase_05 | AC | 54 ms
36,824 KB |
testcase_06 | AC | 82 ms
38,224 KB |
testcase_07 | AC | 81 ms
38,248 KB |
testcase_08 | AC | 54 ms
36,980 KB |
testcase_09 | AC | 53 ms
37,192 KB |
testcase_10 | AC | 54 ms
37,200 KB |
testcase_11 | AC | 55 ms
37,168 KB |
testcase_12 | AC | 55 ms
37,128 KB |
testcase_13 | AC | 55 ms
37,108 KB |
testcase_14 | AC | 54 ms
37,216 KB |
testcase_15 | AC | 55 ms
36,952 KB |
testcase_16 | AC | 53 ms
37,020 KB |
testcase_17 | AC | 54 ms
37,216 KB |
testcase_18 | AC | 53 ms
36,848 KB |
testcase_19 | AC | 56 ms
37,088 KB |
testcase_20 | AC | 55 ms
36,996 KB |
testcase_21 | AC | 82 ms
38,480 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int w = sc.nextInt(); int[] values = new int[n]; for (int i = 0; i < n; i++) { values[i] = sc.nextInt(); } long[] dp = new long[1 << n]; int ans = 0; for (int i = 1; i < (1 << n); i++) { for (int j = 0; j < n; j++) { if ((i & (1 << j)) == 0) { continue; } dp[i] = dp[i ^ (1 << j)] + values[j]; break; } boolean enable = dp[i] == w; for (int j = i; j > 0 && !enable; j = ((j - 1) & i)) { enable = dp[i] - dp[j] / 2 == w; } if (enable) { ans++; } } System.out.println(ans); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }