結果
問題 | No.2686 商品券の使い道 |
ユーザー |
![]() |
提出日時 | 2024-03-25 11:26:21 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,141 bytes |
コンパイル時間 | 2,357 ms |
コンパイル使用メモリ | 78,500 KB |
実行使用メモリ | 82,256 KB |
最終ジャッジ日時 | 2024-09-30 14:01:57 |
合計ジャッジ時間 | 29,339 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 26 WA * 1 TLE * 2 -- * 19 |
ソースコード
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; } 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(); } } }