結果

問題 No.710 チーム戦
ユーザー tentententen
提出日時 2023-06-15 18:03:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 303 ms / 3,000 ms
コード長 3,161 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,992 KB
最終ジャッジ日時 2023-09-05 21:36:11
合計ジャッジ時間 8,385 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
33,796 KB
testcase_01 AC 46 ms
33,644 KB
testcase_02 AC 181 ms
61,712 KB
testcase_03 AC 183 ms
62,568 KB
testcase_04 AC 188 ms
62,104 KB
testcase_05 AC 182 ms
62,344 KB
testcase_06 AC 200 ms
62,672 KB
testcase_07 AC 193 ms
61,496 KB
testcase_08 AC 195 ms
62,324 KB
testcase_09 AC 194 ms
62,100 KB
testcase_10 AC 179 ms
54,672 KB
testcase_11 AC 192 ms
62,232 KB
testcase_12 AC 190 ms
62,588 KB
testcase_13 AC 185 ms
62,172 KB
testcase_14 AC 189 ms
62,344 KB
testcase_15 AC 178 ms
62,236 KB
testcase_16 AC 192 ms
62,960 KB
testcase_17 AC 171 ms
54,500 KB
testcase_18 AC 182 ms
62,584 KB
testcase_19 AC 191 ms
62,680 KB
testcase_20 AC 183 ms
62,276 KB
testcase_21 AC 188 ms
61,840 KB
testcase_22 AC 303 ms
76,992 KB
testcase_23 AC 42 ms
33,648 KB
testcase_24 AC 289 ms
74,688 KB
testcase_25 AC 37 ms
33,836 KB
testcase_26 AC 39 ms
33,572 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