結果

問題 No.710 チーム戦
ユーザー tentententen
提出日時 2023-01-31 14:28:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 304 ms / 3,000 ms
コード長 2,505 bytes
コンパイル時間 4,608 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 90,148 KB
最終ジャッジ日時 2023-09-13 07:36:37
合計ジャッジ時間 9,512 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,656 KB
testcase_01 AC 43 ms
49,300 KB
testcase_02 AC 180 ms
76,308 KB
testcase_03 AC 165 ms
67,576 KB
testcase_04 AC 186 ms
74,760 KB
testcase_05 AC 169 ms
67,932 KB
testcase_06 AC 187 ms
75,000 KB
testcase_07 AC 172 ms
76,740 KB
testcase_08 AC 189 ms
74,996 KB
testcase_09 AC 175 ms
75,248 KB
testcase_10 AC 183 ms
75,904 KB
testcase_11 AC 191 ms
74,880 KB
testcase_12 AC 192 ms
74,756 KB
testcase_13 AC 185 ms
76,156 KB
testcase_14 AC 181 ms
76,284 KB
testcase_15 AC 183 ms
74,496 KB
testcase_16 AC 182 ms
74,692 KB
testcase_17 AC 194 ms
75,124 KB
testcase_18 AC 185 ms
74,952 KB
testcase_19 AC 193 ms
75,396 KB
testcase_20 AC 187 ms
74,816 KB
testcase_21 AC 192 ms
75,136 KB
testcase_22 AC 304 ms
90,148 KB
testcase_23 AC 46 ms
49,328 KB
testcase_24 AC 289 ms
88,344 KB
testcase_25 AC 42 ms
49,400 KB
testcase_26 AC 43 ms
49,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] lefts;
    static int[] rights;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int total = 0;
        lefts = new int[n];
        rights = new int[n];
        for (int i = 0; i < n; i++) {
            lefts[i] = sc.nextInt();
            rights[i] = sc.nextInt();
            total += rights[i];
        }
        dp = new int[n][total + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        int ans = Integer.MAX_VALUE;
        for (int i = 0; i <= total; i++) {
            ans = Math.min(ans, Math.max(dfw(n - 1, i), total - i));
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (idx < 0) {
            if (v == 0) {
                return 0;
            } else {
                return Integer.MAX_VALUE / 2;
            }
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.min(dfw(idx - 1, v), dfw(idx - 1, v - rights[idx]) + lefts[idx]);
        }
        return dp[idx][v];
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0