結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー 東前頭十一枚目東前頭十一枚目
提出日時 2019-12-19 11:14:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 411 ms / 2,500 ms
コード長 1,569 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 171,880 KB
実行使用メモリ 102,376 KB
最終ジャッジ日時 2024-07-07 01:03:16
合計ジャッジ時間 7,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
40,392 KB
testcase_01 AC 9 ms
40,264 KB
testcase_02 AC 8 ms
40,516 KB
testcase_03 AC 9 ms
40,520 KB
testcase_04 AC 9 ms
40,520 KB
testcase_05 AC 10 ms
40,652 KB
testcase_06 AC 9 ms
42,564 KB
testcase_07 AC 10 ms
41,036 KB
testcase_08 AC 14 ms
42,696 KB
testcase_09 AC 11 ms
41,160 KB
testcase_10 AC 11 ms
41,800 KB
testcase_11 AC 278 ms
89,700 KB
testcase_12 AC 295 ms
92,260 KB
testcase_13 AC 257 ms
87,392 KB
testcase_14 AC 44 ms
51,020 KB
testcase_15 AC 177 ms
77,408 KB
testcase_16 AC 323 ms
94,440 KB
testcase_17 AC 57 ms
53,840 KB
testcase_18 AC 393 ms
100,452 KB
testcase_19 AC 193 ms
82,016 KB
testcase_20 AC 50 ms
53,968 KB
testcase_21 AC 22 ms
46,288 KB
testcase_22 AC 33 ms
50,128 KB
testcase_23 AC 13 ms
43,464 KB
testcase_24 AC 216 ms
83,164 KB
testcase_25 AC 394 ms
101,220 KB
testcase_26 AC 411 ms
102,376 KB
testcase_27 AC 354 ms
97,768 KB
testcase_28 AC 408 ms
102,252 KB
testcase_29 AC 275 ms
90,728 KB
testcase_30 AC 154 ms
80,616 KB
testcase_31 AC 108 ms
75,240 KB
testcase_32 AC 366 ms
99,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MAX = 3010;

int dp[MAX][MAX];
int solve[MAX][MAX];
int ans[MAX][MAX];
int main() {
	int n; cin >> n;
	int a[n + 1];
	for(int i = 0; i <= n; ++i) cin >> a[i];
	int b[n + 1];
	for(int i = 0; i <= n; ++i) cin >> b[i];
	int d[n];
	for(int i = 0; i < n; ++i) cin >> d[i];
	sort(d, d + n);
	reverse(d, d + n);
	dp[0][0] = a[0] + b[0];
	for(int i = 0; i < MAX; ++i) {
		for(int j = 0; j < MAX; ++j) {
			solve[i][j] = n;
		}
	}
	solve[0][0] = -1;
	ans[0][0] = 0;
	for(int i = 0; i <= n; ++i) {
		for(int j = 0; j <= n; ++j) {
			if(i == 0 and j == 0) continue;
			if(i - 1 >= 0) {
				dp[i][j] = max(dp[i][j], dp[i - 1][j] - a[i - 1] + a[i]);
				int ng = solve[i - 1][j], ok = n;
				while(abs(ok - ng) > 1) {
					int mid = (ok + ng) / 2;
					if(d[mid] <= dp[i][j]) {
						ok = mid;
					} else {
						ng = mid;
					}
				}
				solve[i][j] = min(solve[i][j], ok);
				if(solve[i][j] != n) {
					ans[i][j] = max(ans[i][j], ans[i - 1][j] + 1);
				}
			}
			if(j - 1 >= 0) {
				dp[i][j] = max(dp[i][j], dp[i][j - 1] - b[j - 1] + b[j]);
				int ng = solve[i][j - 1], ok = n;
				while(abs(ok - ng) > 1) {
					int mid = (ok + ng) / 2;
					if(d[mid] <= dp[i][j]) {
						ok = mid;
					} else {
						ng = mid;
					}
				}
				solve[i][j] = min(solve[i][j], ok);
				if(solve[i][j] != n) {
					ans[i][j] = max(ans[i][j], ans[i][j - 1] + 1);
				}
			}
		}
	}
	int anss = 0;
	for(int i = 0; i <= n; ++i) {
		for(int j = 0; j <= n; ++j) {
			anss = max(anss, ans[i][j]);
		}
	}
	cout << anss << '\n';
	return 0;
}
0