結果

問題 No.54 Happy Hallowe'en
ユーザー ぴろずぴろず
提出日時 2015-10-05 11:14:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 544 ms / 5,000 ms
コード長 792 bytes
コンパイル時間 3,222 ms
コンパイル使用メモリ 79,900 KB
実行使用メモリ 48,292 KB
最終ジャッジ日時 2024-10-15 17:13:49
合計ジャッジ時間 8,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,444 KB
testcase_01 AC 139 ms
41,400 KB
testcase_02 AC 138 ms
41,112 KB
testcase_03 AC 136 ms
41,176 KB
testcase_04 AC 317 ms
47,100 KB
testcase_05 AC 357 ms
46,984 KB
testcase_06 AC 380 ms
47,748 KB
testcase_07 AC 412 ms
47,888 KB
testcase_08 AC 536 ms
48,196 KB
testcase_09 AC 544 ms
48,292 KB
testcase_10 AC 135 ms
41,420 KB
testcase_11 AC 136 ms
41,676 KB
testcase_12 AC 431 ms
47,740 KB
testcase_13 AC 443 ms
47,868 KB
testcase_14 AC 136 ms
41,424 KB
testcase_15 AC 134 ms
41,052 KB
testcase_16 AC 148 ms
41,676 KB
testcase_17 AC 149 ms
41,248 KB
testcase_18 AC 138 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	public static int MAX = 20000;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		House[] h = new House[n];
		for(int i=0;i<n;i++) {
			int v = sc.nextInt();
			int t = sc.nextInt();
			h[i] = new House(v,t);
		}
		Arrays.sort(h,(a,b)->Integer.compare(a.v + a.t, b.v + b.t));
		boolean[] dp = new boolean[MAX+1];
		dp[0] = true;
		for(int i=0;i<n;i++) {
			for(int j=h[i].t-1;j>=0;j--) {
				if (dp[j]) {
					dp[j+h[i].v] = true;
				}
			}
		}
		int max = 0;
		for(int i=0;i<=MAX;i++) {
			if (dp[i]) {
				max = i;
			}
		}
		System.out.println(max);
	}

	static class House {
		int v,t;
		public House(int v,int t) {
			this.v = v;
			this.t = t;
		}
	}

}
0