結果
問題 | No.2686 商品券の使い道 |
ユーザー | tenten |
提出日時 | 2024-03-25 11:29:18 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,184 bytes |
コンパイル時間 | 2,546 ms |
コンパイル使用メモリ | 78,508 KB |
実行使用メモリ | 82,432 KB |
最終ジャッジ日時 | 2024-09-30 14:02:29 |
合計ジャッジ時間 | 29,775 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
42,128 KB |
testcase_01 | AC | 51 ms
36,684 KB |
testcase_02 | AC | 146 ms
50,312 KB |
testcase_03 | AC | 158 ms
50,140 KB |
testcase_04 | AC | 168 ms
50,432 KB |
testcase_05 | AC | 150 ms
50,324 KB |
testcase_06 | AC | 147 ms
50,480 KB |
testcase_07 | AC | 149 ms
50,468 KB |
testcase_08 | AC | 146 ms
50,320 KB |
testcase_09 | AC | 150 ms
50,240 KB |
testcase_10 | AC | 175 ms
50,344 KB |
testcase_11 | AC | 1,582 ms
50,144 KB |
testcase_12 | AC | 210 ms
50,264 KB |
testcase_13 | AC | 1,717 ms
50,264 KB |
testcase_14 | AC | 1,500 ms
50,516 KB |
testcase_15 | AC | 677 ms
50,384 KB |
testcase_16 | AC | 1,225 ms
50,304 KB |
testcase_17 | AC | 780 ms
50,236 KB |
testcase_18 | AC | 535 ms
50,372 KB |
testcase_19 | AC | 576 ms
50,204 KB |
testcase_20 | AC | 1,802 ms
50,292 KB |
testcase_21 | AC | 1,739 ms
50,008 KB |
testcase_22 | AC | 481 ms
50,240 KB |
testcase_23 | AC | 865 ms
50,136 KB |
testcase_24 | AC | 1,316 ms
50,344 KB |
testcase_25 | AC | 172 ms
50,352 KB |
testcase_26 | AC | 501 ms
50,388 KB |
testcase_27 | AC | 1,627 ms
50,260 KB |
testcase_28 | AC | 137 ms
49,708 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
evil_random20_1.txt | -- | - |
evil_random20_2.txt | -- | - |
evil_random20_3.txt | -- | - |
ソースコード
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 a = sc.nextInt(); int b = sc.nextInt(); int[] prices = new int[n]; int[] values = new int[n]; for (int i = 0; i < n; i++) { prices[i] = sc.nextInt(); values[i] = sc.nextInt(); } long[][] dp = new long[1 << n][2]; for (int i = 0; i < (1 << n); i++) { for (int j = 0; j < n; j++) { if ((i & (1 << j)) == 0) { continue; } dp[i][0] = dp[i ^ (1 << j)][0] + prices[j]; dp[i][1] = dp[i ^ (1 << j)][1] + values[j]; } } long ans = 0; for (int i = 0; i < (1 << n); i++) { if (dp[i][0] > a) { continue; } ans = Math.max(ans, dp[i][1]); int base = ((1 << n) - 1) ^ i; for (int j = base; j > 0; j = ((j - 1) & base)) { if (dp[j][0] <= b) { ans = Math.max(ans, dp[i][1] + dp[j][1]); } } } 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(); } } }