結果

問題 No.54 Happy Hallowe'en
ユーザー cielciel
提出日時 2017-01-19 20:02:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 589 ms / 5,000 ms
コード長 743 bytes
コンパイル時間 2,734 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 49,268 KB
最終ジャッジ日時 2024-12-23 01:33:03
合計ジャッジ時間 8,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,184 KB
testcase_01 AC 111 ms
39,496 KB
testcase_02 AC 128 ms
41,244 KB
testcase_03 AC 124 ms
40,500 KB
testcase_04 AC 370 ms
46,756 KB
testcase_05 AC 395 ms
47,796 KB
testcase_06 AC 422 ms
47,740 KB
testcase_07 AC 465 ms
47,824 KB
testcase_08 AC 508 ms
48,204 KB
testcase_09 AC 589 ms
49,268 KB
testcase_10 AC 128 ms
40,920 KB
testcase_11 AC 127 ms
41,376 KB
testcase_12 AC 580 ms
48,136 KB
testcase_13 AC 480 ms
48,024 KB
testcase_14 AC 120 ms
41,196 KB
testcase_15 AC 121 ms
40,704 KB
testcase_16 AC 146 ms
41,236 KB
testcase_17 AC 158 ms
41,228 KB
testcase_18 AC 116 ms
39,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.AbstractMap.SimpleEntry;
class Main{
	public static void main(String[]args){
		Scanner cin=new Scanner(System.in);
		int n=cin.nextInt(),vmax=0,tmax=0;
		List<SimpleEntry<Integer,Integer>> v=new ArrayList<>();
		for(int i=0;i<n;i++){
			int a=cin.nextInt(),b=cin.nextInt();
			v.add(new SimpleEntry<>(a,b));
			if(vmax<a)vmax=a;
			if(tmax<b)tmax=b;
		}
		Collections.sort(v,
			(x,y) -> new Integer(x.getKey()+x.getValue()).compareTo(y.getKey()+y.getValue())
		);
		int[] bag=new int[tmax+vmax+1];
		bag[0]=1;
		for(int i=0;i<n;i++){
			for(int j=v.get(i).getValue()-1;j>=0;j--)bag[j+v.get(i).getKey()]|=bag[j];
		}
		for(int i=tmax+vmax;i>=0;i--)if(bag[i]>0){
			System.out.println(i);
			break;
		}
	}
}
0