結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー 37zigen37zigen
提出日時 2019-12-15 01:40:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,323 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 80,104 KB
実行使用メモリ 347,500 KB
最終ジャッジ日時 2024-06-28 10:26:10
合計ジャッジ時間 41,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,992 KB
testcase_01 AC 133 ms
41,116 KB
testcase_02 AC 124 ms
40,416 KB
testcase_03 AC 135 ms
40,992 KB
testcase_04 AC 133 ms
41,272 KB
testcase_05 AC 133 ms
41,020 KB
testcase_06 AC 139 ms
41,312 KB
testcase_07 AC 140 ms
41,220 KB
testcase_08 AC 143 ms
41,104 KB
testcase_09 AC 298 ms
53,124 KB
testcase_10 AC 194 ms
47,648 KB
testcase_11 AC 245 ms
47,908 KB
testcase_12 AC 424 ms
109,216 KB
testcase_13 AC 875 ms
249,180 KB
testcase_14 AC 343 ms
75,740 KB
testcase_15 AC 383 ms
92,740 KB
testcase_16 AC 458 ms
106,396 KB
testcase_17 AC 545 ms
127,040 KB
testcase_18 AC 130 ms
41,060 KB
testcase_19 AC 118 ms
40,252 KB
testcase_20 AC 123 ms
40,040 KB
testcase_21 AC 189 ms
47,932 KB
testcase_22 AC 166 ms
42,864 KB
testcase_23 AC 165 ms
43,804 KB
testcase_24 AC 1,043 ms
345,552 KB
testcase_25 AC 1,078 ms
346,776 KB
testcase_26 AC 1,132 ms
346,728 KB
testcase_27 AC 1,145 ms
347,044 KB
testcase_28 AC 1,288 ms
347,500 KB
testcase_29 AC 1,309 ms
347,352 KB
testcase_30 AC 119 ms
40,048 KB
testcase_31 AC 128 ms
40,944 KB
testcase_32 AC 168 ms
43,012 KB
testcase_33 AC 180 ms
47,556 KB
testcase_34 AC 197 ms
48,024 KB
testcase_35 AC 1,030 ms
346,980 KB
testcase_36 AC 1,021 ms
347,444 KB
testcase_37 AC 1,074 ms
347,148 KB
testcase_38 AC 1,082 ms
346,848 KB
testcase_39 AC 1,093 ms
346,912 KB
testcase_40 AC 1,156 ms
347,124 KB
testcase_41 AC 1,152 ms
347,376 KB
testcase_42 AC 1,162 ms
347,296 KB
testcase_43 AC 1,148 ms
347,428 KB
testcase_44 AC 1,146 ms
345,716 KB
testcase_45 AC 1,158 ms
346,144 KB
testcase_46 AC 1,323 ms
347,376 KB
testcase_47 AC 1,282 ms
346,428 KB
testcase_48 AC 1,319 ms
347,440 KB
testcase_49 AC 1,282 ms
346,860 KB
testcase_50 AC 1,277 ms
347,464 KB
testcase_51 AC 1,283 ms
346,624 KB
testcase_52 AC 1,007 ms
347,204 KB
testcase_53 AC 1,084 ms
346,844 KB
testcase_54 AC 1,044 ms
347,328 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[] P=new int[N+1];
		int[] D=new int[N+1];
		int[][] a=new int[N+1][2];
		for(int i=0;i<N;++i){
			P[i]=sc.nextInt();
			D[i]=sc.nextInt();
		}
		P[N]=0;
		D[N]=0;
		for(int i=0;i<=N;++i){
			a[i][0]=P[i];
			a[i][1]=D[i];
		}
		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];
		int[][] ma=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;
				ma[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));
				ma[i][j]=Math.max((i>0?ma[i-1][j]:0),(j>0?ma[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