結果

問題 No.710 チーム戦
ユーザー tentententen
提出日時 2023-06-15 18:03:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 3,000 ms
コード長 3,161 bytes
コンパイル時間 2,592 ms
コンパイル使用メモリ 88,384 KB
実行使用メモリ 90,144 KB
最終ジャッジ日時 2024-06-23 16:56:10
合計ジャッジ時間 8,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,328 KB
testcase_01 AC 57 ms
50,536 KB
testcase_02 AC 175 ms
75,160 KB
testcase_03 AC 178 ms
76,248 KB
testcase_04 AC 178 ms
76,224 KB
testcase_05 AC 175 ms
76,480 KB
testcase_06 AC 179 ms
76,288 KB
testcase_07 AC 180 ms
75,124 KB
testcase_08 AC 181 ms
76,412 KB
testcase_09 AC 180 ms
76,228 KB
testcase_10 AC 165 ms
67,848 KB
testcase_11 AC 182 ms
76,424 KB
testcase_12 AC 184 ms
76,244 KB
testcase_13 AC 178 ms
75,228 KB
testcase_14 AC 181 ms
75,228 KB
testcase_15 AC 168 ms
75,048 KB
testcase_16 AC 186 ms
76,436 KB
testcase_17 AC 165 ms
68,128 KB
testcase_18 AC 173 ms
76,260 KB
testcase_19 AC 185 ms
76,088 KB
testcase_20 AC 177 ms
76,260 KB
testcase_21 AC 187 ms
75,052 KB
testcase_22 AC 286 ms
90,144 KB
testcase_23 AC 56 ms
50,152 KB
testcase_24 AC 272 ms
88,504 KB
testcase_25 AC 52 ms
50,332 KB
testcase_26 AC 52 ms
50,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] man;
    static int[] woman;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int total = 0;
        man = new int[n];
        woman = new int[n];
        for (int i = 0; i < n; i++) {
            man[i] = sc.nextInt();
            woman[i] = sc.nextInt();
            total += man[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(i, dfw(n - 1, i)));
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.min(dfw(idx - 1, v) + woman[idx], dfw(idx - 1, v - man[idx]));
        }
        return dp[idx][v];
    }
}

class BinaryIndexedTree {
    int size;
    int[] tree;
    
    public BinaryIndexedTree(int size) {
        this.size = size;
        tree = new int[size];
    }
    
    public void add(int idx, int value) {
        int mask = 1;
        while (idx < size) {
            if ((idx & mask) != 0) {
                tree[idx] += value;
                idx += mask;
            }
            mask <<= 1;
        }
    }
    
    public int getSum(int from, int to) {
        return getSum(to) - getSum(from - 1);
    }
    
    public int getSum(int x) {
        int mask = 1;
        int ans = 0;
        while (x > 0) {
            if ((x & mask) != 0) {
                ans += tree[x];
                x -= mask;
            }
            mask <<= 1;
        }
        return ans;
    }
}
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