結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー ks2mks2m
提出日時 2019-12-12 01:06:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 377 ms / 2,500 ms
コード長 1,474 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 78,056 KB
実行使用メモリ 128,284 KB
最終ジャッジ日時 2024-06-24 08:13:48
合計ジャッジ時間 9,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,404 KB
testcase_01 AC 55 ms
50,132 KB
testcase_02 AC 55 ms
50,356 KB
testcase_03 AC 54 ms
50,248 KB
testcase_04 AC 55 ms
49,776 KB
testcase_05 AC 57 ms
50,408 KB
testcase_06 AC 67 ms
50,292 KB
testcase_07 AC 71 ms
50,248 KB
testcase_08 AC 85 ms
51,112 KB
testcase_09 AC 76 ms
50,512 KB
testcase_10 AC 91 ms
51,276 KB
testcase_11 AC 293 ms
111,600 KB
testcase_12 AC 294 ms
111,556 KB
testcase_13 AC 257 ms
111,592 KB
testcase_14 AC 142 ms
56,480 KB
testcase_15 AC 210 ms
83,908 KB
testcase_16 AC 296 ms
128,132 KB
testcase_17 AC 146 ms
61,156 KB
testcase_18 AC 377 ms
128,284 KB
testcase_19 AC 270 ms
111,304 KB
testcase_20 AC 150 ms
61,044 KB
testcase_21 AC 128 ms
57,008 KB
testcase_22 AC 148 ms
61,112 KB
testcase_23 AC 111 ms
51,432 KB
testcase_24 AC 222 ms
86,636 KB
testcase_25 AC 343 ms
127,636 KB
testcase_26 AC 335 ms
127,592 KB
testcase_27 AC 309 ms
127,984 KB
testcase_28 AC 371 ms
128,152 KB
testcase_29 AC 321 ms
127,728 KB
testcase_30 AC 296 ms
127,804 KB
testcase_31 AC 287 ms
127,728 KB
testcase_32 AC 305 ms
128,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		int[] a = new int[n + 1];
		int[] b = new int[n + 1];
		int[] d = new int[n + 1];
		String[] sa = br.readLine().split(" ");
		for (int i = 0; i <= n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		for (int i = 0; i <= n; i++) {
			b[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		d[0] = Integer.MIN_VALUE;
		for (int i = 0; i < n; i++) {
			d[i + 1] = Integer.parseInt(sa[i]);
		}
		br.close();

		Arrays.sort(d);
		int[][] c = new int[n + 2][n + 2];
		for (int i = 0; i <= n; i++) {
			int idx = n;
			for (int j = 0; j <= n; j++) {
				int sum = a[i] + b[j];
				while (sum < d[idx]) {
					idx--;
				}
				c[i][j] = idx;
			}
		}

		int[][] dp = new int[n + 2][n + 2];
		dp[0][0] = n + 1;
		for (int i = 0; i <= n; i++) {
			for (int j = 0; j <= n; j++) {
				dp[i + 1][j] = Math.min(c[i + 1][j], dp[i][j] - 1);
				int val = Math.min(c[i][j + 1], dp[i][j] - 1);
				dp[i][j + 1] = Math.max(dp[i][j + 1], val);
			}
		}
		dp[0][0] = 0;

		int ans = 0;
		for (int i = 0; i <= n; i++) {
			for (int j = 0; j <= n; j++) {
				if (dp[i][j] > 0) {
					ans = Math.max(ans, i + j);
				}
			}
		}
		System.out.println(ans);
	}
}
0