結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | 東前頭十一枚目 |
提出日時 | 2019-12-19 11:07:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,379 bytes |
コンパイル時間 | 1,670 ms |
コンパイル使用メモリ | 170,020 KB |
実行使用メモリ | 101,632 KB |
最終ジャッジ日時 | 2024-07-07 01:03:07 |
合計ジャッジ時間 | 6,256 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 217 ms
83,712 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 142 ms
66,176 KB |
testcase_16 | AC | 276 ms
91,776 KB |
testcase_17 | AC | 39 ms
25,600 KB |
testcase_18 | AC | 310 ms
99,072 KB |
testcase_19 | AC | 142 ms
75,264 KB |
testcase_20 | AC | 33 ms
26,880 KB |
testcase_21 | AC | 12 ms
14,720 KB |
testcase_22 | AC | 19 ms
22,784 KB |
testcase_23 | AC | 5 ms
7,168 KB |
testcase_24 | AC | 185 ms
72,064 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 278 ms
96,640 KB |
testcase_28 | AC | 325 ms
101,632 KB |
testcase_29 | AC | 211 ms
90,240 KB |
testcase_30 | AC | 108 ms
80,000 KB |
testcase_31 | AC | 73 ms
74,240 KB |
testcase_32 | AC | 284 ms
97,792 KB |
ソースコード
#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]; 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] = 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] = ok; if(solve[i][j] != n) { ans[i][j] = ans[i - 1][j] + 1; } } if(j - 1 >= 0) { 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] = ok; if(solve[i][j] != n) { 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; }