結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー 37zigen37zigen
提出日時 2019-12-15 01:38:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,177 ms / 2,000 ms
コード長 2,030 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 79,512 KB
実行使用メモリ 347,880 KB
最終ジャッジ日時 2024-06-28 10:23:00
合計ジャッジ時間 39,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,268 KB
testcase_01 AC 135 ms
40,980 KB
testcase_02 AC 142 ms
41,104 KB
testcase_03 AC 136 ms
41,528 KB
testcase_04 AC 138 ms
41,112 KB
testcase_05 AC 136 ms
41,092 KB
testcase_06 AC 144 ms
41,692 KB
testcase_07 AC 144 ms
41,376 KB
testcase_08 AC 144 ms
41,072 KB
testcase_09 AC 301 ms
52,788 KB
testcase_10 AC 199 ms
47,832 KB
testcase_11 AC 246 ms
48,348 KB
testcase_12 AC 425 ms
109,464 KB
testcase_13 AC 814 ms
248,612 KB
testcase_14 AC 353 ms
76,308 KB
testcase_15 AC 382 ms
93,536 KB
testcase_16 AC 527 ms
107,056 KB
testcase_17 AC 543 ms
127,552 KB
testcase_18 AC 135 ms
41,200 KB
testcase_19 AC 137 ms
41,088 KB
testcase_20 AC 139 ms
41,272 KB
testcase_21 AC 198 ms
48,044 KB
testcase_22 AC 176 ms
43,432 KB
testcase_23 AC 183 ms
43,656 KB
testcase_24 AC 985 ms
346,712 KB
testcase_25 AC 1,021 ms
346,996 KB
testcase_26 AC 1,072 ms
346,660 KB
testcase_27 AC 1,037 ms
346,716 KB
testcase_28 AC 1,162 ms
347,644 KB
testcase_29 AC 1,176 ms
347,592 KB
testcase_30 AC 138 ms
41,216 KB
testcase_31 AC 136 ms
41,380 KB
testcase_32 AC 172 ms
43,304 KB
testcase_33 AC 185 ms
47,608 KB
testcase_34 AC 199 ms
47,912 KB
testcase_35 AC 964 ms
347,240 KB
testcase_36 AC 967 ms
347,504 KB
testcase_37 AC 1,017 ms
347,020 KB
testcase_38 AC 1,107 ms
347,124 KB
testcase_39 AC 1,113 ms
347,216 KB
testcase_40 AC 1,048 ms
347,880 KB
testcase_41 AC 1,060 ms
347,044 KB
testcase_42 AC 1,073 ms
347,872 KB
testcase_43 AC 1,043 ms
347,104 KB
testcase_44 AC 1,058 ms
346,068 KB
testcase_45 AC 1,063 ms
345,528 KB
testcase_46 AC 1,173 ms
345,764 KB
testcase_47 AC 1,150 ms
347,656 KB
testcase_48 AC 1,165 ms
347,512 KB
testcase_49 AC 1,144 ms
347,468 KB
testcase_50 AC 1,157 ms
347,568 KB
testcase_51 AC 1,177 ms
347,208 KB
testcase_52 AC 927 ms
347,428 KB
testcase_53 AC 999 ms
347,216 KB
testcase_54 AC 971 ms
347,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	class SegTree{
		int n;
		int[] v;
		
		public SegTree(int n){
			this.n=1;
			while(this.n<n)this.n=2*this.n;
			v=new int[2*this.n-1];
			Arrays.fill(v,0);
		}
		
		void update(int k,int val){
			k+=n-1;
			v[k]=Math.max(v[k],val);
			while(k>0){
				k=(k-1)/2;
				v[k]=Math.max(v[2*k+1],v[2*k+2]);
			}
		}
		
		int query(int a,int b){
			return query(0,n,a,b,0);	
		}
		
		int query(int l,int r,int a,int b,int k){
			if(a<=l&&r<=b)
				return v[k];
			else if(r<=a||b<=l)
				return 0;
			else{
				int vl=query(l,(l+r)/2,a,b,2*k+1);
				int vr=query((l+r)/2,r,a,b,2*k+2);
				return Math.max(vl,vr);
			}
		}
	}
	
	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]);
	}
	
	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
	
0