結果

問題 No.710 チーム戦
ユーザー 37zigen37zigen
提出日時 2018-06-29 20:32:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 259 ms / 3,000 ms
コード長 1,216 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 78,744 KB
実行使用メモリ 109,964 KB
最終ジャッジ日時 2024-06-30 23:54:31
合計ジャッジ時間 9,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
56,304 KB
testcase_01 AC 164 ms
56,176 KB
testcase_02 AC 247 ms
109,608 KB
testcase_03 AC 246 ms
109,680 KB
testcase_04 AC 243 ms
109,732 KB
testcase_05 AC 248 ms
109,652 KB
testcase_06 AC 248 ms
109,652 KB
testcase_07 AC 251 ms
109,544 KB
testcase_08 AC 254 ms
109,616 KB
testcase_09 AC 246 ms
109,884 KB
testcase_10 AC 245 ms
109,708 KB
testcase_11 AC 246 ms
109,760 KB
testcase_12 AC 245 ms
109,724 KB
testcase_13 AC 246 ms
109,844 KB
testcase_14 AC 250 ms
109,620 KB
testcase_15 AC 248 ms
109,528 KB
testcase_16 AC 250 ms
109,536 KB
testcase_17 AC 244 ms
109,340 KB
testcase_18 AC 244 ms
109,800 KB
testcase_19 AC 251 ms
109,752 KB
testcase_20 AC 253 ms
109,636 KB
testcase_21 AC 248 ms
109,964 KB
testcase_22 AC 243 ms
109,820 KB
testcase_23 AC 244 ms
109,884 KB
testcase_24 AC 259 ms
109,792 KB
testcase_25 AC 145 ms
54,292 KB
testcase_26 AC 147 ms
54,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		if (!(1 <= N && N <= 100))
			throw new AssertionError();
		int[][] ok = new int[N + 1][100000 + 1];
		for (int i = 0; i < ok.length; ++i) {
			for (int j = 0; j < ok[i].length; ++j) {
				ok[i][j] = Integer.MAX_VALUE / 3;
			}
		}
		ok[0][0] = 0;
		for (int i = 0; i < N; ++i) {
			int A = sc.nextInt();
			int B = sc.nextInt();
			if (!(1 <= A && A <= 1000) || !(1 <= B && B <= 1000))
				throw new AssertionError();
			for (int j = 0; j < ok[i].length; ++j) {
				if (ok[i][j] == Integer.MAX_VALUE / 3)
					continue;
				ok[i + 1][j + A] = Math.min(ok[i + 1][j + A], ok[i][j]);
				ok[i + 1][j] = Math.min(ok[i + 1][j], ok[i][j] + B);
			}
		}
		int ans = Integer.MAX_VALUE / 3;
		for (int i = 0; i < ok[N].length; ++i) {
			ans = Math.min(ans, Math.max(i, ok[N][i]));
		}
		System.out.println(ans);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0