結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー 37zigen37zigen
提出日時 2019-12-12 22:08:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,262 ms / 2,500 ms
コード長 1,285 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 69,296 KB
最終ジャッジ日時 2024-06-25 18:23:49
合計ジャッジ時間 24,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,628 KB
testcase_01 AC 139 ms
41,560 KB
testcase_02 AC 139 ms
41,712 KB
testcase_03 AC 137 ms
41,804 KB
testcase_04 AC 143 ms
41,600 KB
testcase_05 AC 154 ms
41,900 KB
testcase_06 AC 154 ms
41,800 KB
testcase_07 AC 190 ms
41,784 KB
testcase_08 AC 237 ms
43,452 KB
testcase_09 AC 199 ms
42,268 KB
testcase_10 AC 210 ms
42,924 KB
testcase_11 AC 962 ms
63,056 KB
testcase_12 AC 955 ms
61,040 KB
testcase_13 AC 868 ms
63,616 KB
testcase_14 AC 423 ms
47,804 KB
testcase_15 AC 691 ms
58,048 KB
testcase_16 AC 1,062 ms
59,572 KB
testcase_17 AC 463 ms
47,516 KB
testcase_18 AC 1,262 ms
59,912 KB
testcase_19 AC 807 ms
63,060 KB
testcase_20 AC 484 ms
50,660 KB
testcase_21 AC 351 ms
47,348 KB
testcase_22 AC 498 ms
48,948 KB
testcase_23 AC 230 ms
44,140 KB
testcase_24 AC 829 ms
59,400 KB
testcase_25 AC 1,234 ms
69,032 KB
testcase_26 AC 1,236 ms
68,920 KB
testcase_27 AC 1,129 ms
68,776 KB
testcase_28 AC 1,181 ms
69,288 KB
testcase_29 AC 978 ms
69,296 KB
testcase_30 AC 819 ms
68,808 KB
testcase_31 AC 738 ms
69,132 KB
testcase_32 AC 1,081 ms
68,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
	 	Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		long[] A=new long[N+1];
		long[] B=new long[N+1];
		long[] D=new long[N];
		for(int i=0;i<=N;++i){
			A[i]=sc.nextLong();
		}
		for(int i=0;i<=N;++i){
			B[i]=sc.nextLong();
		}
		for(int i=0;i<N;++i){
			D[i]=sc.nextLong();
		}
		Arrays.sort(D);
		int ok=0;
		int ng=N+1;
		while(ng-ok>1){
			int middle=(ok+ng)/2;
			if(check(A,B,D,middle)){
				ok=middle;
			}else{
				ng=middle;
			}
		}
		System.out.println(ok);
	}
	
	boolean check(long[] A, long[] B, long[] D, int curn){
		int N=D.length;
		boolean[][] dp=new boolean[N+1][N+1];
		for(int i=0;i<dp.length;++i)
			for(int j=0;j<dp[i].length;++j)
				dp[i][j]=false;
		dp[0][0]=true;
		for(int i=1;i<=curn;++i){
			for(int a=0;a<=N;++a){
				int b=i-a;
				if(b<0||b>N)continue;
				if(D[curn-i]<=A[a]+B[b]){
					if(a>0) dp[i][a]|=dp[i-1][a-1];
					if(b>0) dp[i][a]|=dp[i-1][a];
				}
			}
		}
		int ans=0;
		for(int i=0;i<=N;++i){
			for(int j=0;j<=N;++j){
				if(dp[i][j]) ans=Math.max(ans,i);
			}
		}
		return ans>=curn;
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0