結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー 37zigen37zigen
提出日時 2019-12-15 01:43:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,083 ms / 2,000 ms
コード長 1,068 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 78,960 KB
実行使用メモリ 241,156 KB
最終ジャッジ日時 2024-06-28 10:30:10
合計ジャッジ時間 34,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,256 KB
testcase_01 AC 130 ms
40,972 KB
testcase_02 AC 130 ms
41,424 KB
testcase_03 AC 130 ms
41,272 KB
testcase_04 AC 118 ms
40,156 KB
testcase_05 AC 129 ms
40,964 KB
testcase_06 AC 137 ms
41,204 KB
testcase_07 AC 121 ms
40,280 KB
testcase_08 AC 137 ms
41,388 KB
testcase_09 AC 248 ms
47,844 KB
testcase_10 AC 189 ms
45,028 KB
testcase_11 AC 232 ms
48,052 KB
testcase_12 AC 382 ms
92,876 KB
testcase_13 AC 712 ms
184,476 KB
testcase_14 AC 311 ms
65,324 KB
testcase_15 AC 325 ms
71,932 KB
testcase_16 AC 463 ms
80,120 KB
testcase_17 AC 449 ms
87,792 KB
testcase_18 AC 132 ms
41,236 KB
testcase_19 AC 133 ms
41,248 KB
testcase_20 AC 131 ms
41,080 KB
testcase_21 AC 174 ms
44,336 KB
testcase_22 AC 161 ms
42,532 KB
testcase_23 AC 163 ms
43,224 KB
testcase_24 AC 845 ms
240,056 KB
testcase_25 AC 883 ms
240,408 KB
testcase_26 AC 912 ms
240,472 KB
testcase_27 AC 922 ms
240,544 KB
testcase_28 AC 1,075 ms
240,448 KB
testcase_29 AC 1,054 ms
241,156 KB
testcase_30 AC 130 ms
41,292 KB
testcase_31 AC 115 ms
40,188 KB
testcase_32 AC 165 ms
42,860 KB
testcase_33 AC 159 ms
43,348 KB
testcase_34 AC 189 ms
47,880 KB
testcase_35 AC 861 ms
240,500 KB
testcase_36 AC 824 ms
240,684 KB
testcase_37 AC 857 ms
240,652 KB
testcase_38 AC 862 ms
240,360 KB
testcase_39 AC 856 ms
240,132 KB
testcase_40 AC 919 ms
240,316 KB
testcase_41 AC 943 ms
239,952 KB
testcase_42 AC 915 ms
239,888 KB
testcase_43 AC 935 ms
240,180 KB
testcase_44 AC 917 ms
239,912 KB
testcase_45 AC 933 ms
240,252 KB
testcase_46 AC 1,061 ms
240,024 KB
testcase_47 AC 1,046 ms
239,412 KB
testcase_48 AC 1,080 ms
240,464 KB
testcase_49 AC 1,049 ms
240,116 KB
testcase_50 AC 1,048 ms
240,732 KB
testcase_51 AC 1,083 ms
240,680 KB
testcase_52 AC 804 ms
221,504 KB
testcase_53 AC 864 ms
240,476 KB
testcase_54 AC 809 ms
240,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int K=sc.nextInt();
		int[][] a=new int[N+1][2];
		for(int i=0;i<N;++i){
			a[i][0]=sc.nextInt();
			a[i][1]=sc.nextInt();
		}
		Arrays.sort(a,new Comparator<int[]>(){
			public int compare(int[] a,int[] b){
				if(a[0]!=b[0])
					return Integer.compare(a[0],b[0]);
				else
					return Integer.compare(a[1],b[1]);
			}
		});
		++N;
		int[][] dp=new int[K+1][N];
		for(int i=0;i<=K;++i){
			for(int j=0;j<N;++j){
				dp[i][j]=-Integer.MAX_VALUE/3;
			}
		}
		int[][] seg=new int[K+1][N+10];
		for(int i=0;i<=K;++i){
			for(int j=0;j<N;++j){
				dp[i][j]=Math.max((i>0?dp[i-1][j]:0),(j>0?dp[i][j-1]:0));
				if(i-a[j][0]>=0){
					dp[i][j]=Math.max(dp[i][j],a[j][1]+(j>0?seg[i-a[j][0]][j-1]:0));
				}
				if(j+1<N)
					seg[i][j+1]=Math.max(seg[i][j+1],dp[i][j]+a[j+1][1]);
					seg[i][j+1]=Math.max(seg[i][j+1],seg[i][j]);
			}
		}
		System.out.println(dp[K][N-1]);
	}
}
	
0