結果

問題 No.2686 商品券の使い道
ユーザー tenten
提出日時 2024-03-25 11:44:16
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 2,463 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 79,072 KB
実行使用メモリ 88,052 KB
最終ジャッジ日時 2024-09-30 14:02:48
合計ジャッジ時間 14,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other AC * 17 WA * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

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[] weights = new long[1 << n];
        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;
                }
                weights[i] = weights[i ^ (1 << j)] + prices[j];
                if (weights[i] <= a) {
                    dp[i][0] = dp[i ^ (1 << j)][0] + values[j];
                }
                if (weights[j] <= b) {
                    dp[i][1] = dp[i ^ (1 << j)][1] + values[j];
                }
                break;
            }
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                dp[i][0] = Math.max(dp[i][0], dp[i ^ (1 << j)][0] + values[j]);
                dp[i][1] = Math.max(dp[i][1], dp[i ^ (1 << j)][1] + values[j]);
            }
        }
        long ans = 0;
        for (int i = 0; i < (1 << n); i++) {
            ans = Math.max(ans, dp[i][0] + dp[((1 << n) - 1) ^ i][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();
        }
    }
    
}
0