結果

問題 No.710 チーム戦
ユーザー tentententen
提出日時 2023-01-31 14:28:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 290 ms / 3,000 ms
コード長 2,505 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 91,580 KB
実行使用メモリ 90,208 KB
最終ジャッジ日時 2024-06-30 17:39:06
合計ジャッジ時間 8,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,484 KB
testcase_01 AC 54 ms
50,536 KB
testcase_02 AC 180 ms
76,452 KB
testcase_03 AC 167 ms
67,972 KB
testcase_04 AC 190 ms
75,000 KB
testcase_05 AC 175 ms
68,072 KB
testcase_06 AC 189 ms
75,048 KB
testcase_07 AC 172 ms
76,284 KB
testcase_08 AC 183 ms
75,128 KB
testcase_09 AC 179 ms
76,176 KB
testcase_10 AC 183 ms
76,316 KB
testcase_11 AC 192 ms
75,040 KB
testcase_12 AC 196 ms
75,072 KB
testcase_13 AC 185 ms
76,260 KB
testcase_14 AC 184 ms
76,320 KB
testcase_15 AC 181 ms
76,156 KB
testcase_16 AC 183 ms
76,140 KB
testcase_17 AC 188 ms
74,908 KB
testcase_18 AC 188 ms
75,144 KB
testcase_19 AC 201 ms
76,352 KB
testcase_20 AC 190 ms
74,876 KB
testcase_21 AC 191 ms
75,220 KB
testcase_22 AC 290 ms
90,208 KB
testcase_23 AC 59 ms
50,452 KB
testcase_24 AC 269 ms
88,188 KB
testcase_25 AC 54 ms
50,220 KB
testcase_26 AC 56 ms
50,512 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