結果

問題 No.2693 Sword
ユーザー tentententen
提出日時 2024-03-25 13:36:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 2,293 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 78,660 KB
実行使用メモリ 50,232 KB
最終ジャッジ日時 2024-09-30 14:04:25
合計ジャッジ時間 5,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,416 KB
testcase_01 AC 54 ms
36,780 KB
testcase_02 AC 56 ms
37,088 KB
testcase_03 AC 54 ms
37,088 KB
testcase_04 AC 55 ms
36,920 KB
testcase_05 AC 54 ms
36,884 KB
testcase_06 AC 54 ms
37,024 KB
testcase_07 AC 54 ms
37,232 KB
testcase_08 AC 55 ms
37,092 KB
testcase_09 AC 105 ms
42,164 KB
testcase_10 AC 58 ms
37,244 KB
testcase_11 AC 74 ms
39,492 KB
testcase_12 AC 53 ms
37,088 KB
testcase_13 AC 66 ms
37,424 KB
testcase_14 AC 59 ms
36,648 KB
testcase_15 AC 98 ms
40,204 KB
testcase_16 AC 107 ms
40,100 KB
testcase_17 AC 116 ms
41,720 KB
testcase_18 AC 93 ms
38,748 KB
testcase_19 AC 87 ms
39,312 KB
testcase_20 AC 90 ms
38,552 KB
testcase_21 AC 87 ms
39,604 KB
testcase_22 AC 91 ms
40,240 KB
testcase_23 AC 81 ms
38,160 KB
testcase_24 AC 56 ms
36,768 KB
testcase_25 AC 54 ms
36,420 KB
testcase_26 AC 56 ms
36,680 KB
testcase_27 AC 53 ms
36,880 KB
testcase_28 AC 54 ms
36,544 KB
testcase_29 AC 55 ms
37,156 KB
testcase_30 AC 55 ms
36,752 KB
testcase_31 AC 57 ms
36,956 KB
testcase_32 AC 96 ms
50,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final long MAX = 1000000000000000000L;
    static long[][] dp;
    static long p;
    static boolean[] isDouble;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        p = sc.nextLong();
        int k = sc.nextInt();
        isDouble = new boolean[n];
        values = new int[n];
        for (int i = 0; i < n; i++) {
            isDouble[i] = sc.nextInt() == 2;
            values[i] = sc.nextInt();
        }
        dp = new long[n][k + 1];
        for (long[] arr : dp) {
            Arrays.fill(arr, Long.MIN_VALUE);
        }
        long ans = dfw(n - 1, k);
        System.out.println(ans > MAX ? -1 : ans);
    }
    
    static long dfw(int idx, int v) {
        if (idx + 1 < v) {
            return Long.MIN_VALUE / 2;
        }
        if (v == 0) {
            return p;
        }
        if (dp[idx][v] == Long.MIN_VALUE) {
            dp[idx][v] = Math.max(dfw(idx - 1, v), func(isDouble[idx], values[idx], dfw(idx - 1, v - 1)));
        }
        return dp[idx][v];
    }
    
    static long func(boolean isD, int v, long current) {
        if (isD) {
            return Math.min(MAX + 1, current * 2);
        } else {
            return Math.min(MAX + 1, current + v);
        }
    }
}
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