結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー MayimgMayimg
提出日時 2020-07-24 05:33:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 445 ms / 2,500 ms
コード長 1,377 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 211,092 KB
実行使用メモリ 109,312 KB
最終ジャッジ日時 2024-06-24 08:34:59
合計ジャッジ時間 8,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 268 ms
78,208 KB
testcase_12 AC 274 ms
79,488 KB
testcase_13 AC 244 ms
70,144 KB
testcase_14 AC 33 ms
12,544 KB
testcase_15 AC 158 ms
54,784 KB
testcase_16 AC 287 ms
99,328 KB
testcase_17 AC 52 ms
15,232 KB
testcase_18 AC 417 ms
104,192 KB
testcase_19 AC 214 ms
78,720 KB
testcase_20 AC 45 ms
18,688 KB
testcase_21 AC 16 ms
9,728 KB
testcase_22 AC 32 ms
16,896 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 238 ms
58,368 KB
testcase_25 AC 383 ms
109,312 KB
testcase_26 AC 380 ms
109,184 KB
testcase_27 AC 317 ms
109,184 KB
testcase_28 AC 445 ms
109,184 KB
testcase_29 AC 306 ms
109,056 KB
testcase_30 AC 241 ms
109,184 KB
testcase_31 AC 218 ms
109,056 KB
testcase_32 AC 346 ms
109,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  int n;
  cin >> n;
  vector<int> a(n + 1), b(n + 1);
  for (auto& x : a) cin >> x;
  for (auto& x : b) cin >> x;
  vector<vector<int>> val(n + 1, vector<int>(n + 1));
  for (int i = 0; i < n + 1; i++) for (int j = 0; j < n + 1; j++) val[i][j] = a[i] + b[j];
  vector<int> d(n);
  for (auto& x : d) cin >> x;
  sort(d.begin(), d.end());
  vector<vector<int>> dp(n + 1, vector<int>(n + 1, -(1 << 30)));
  dp[0][0] = n;
  for (int i = 0; i < n + 1; i++) for (int j = 0; j < n + 1; j++) {
    if (i == 0 && j == 0) continue;
    int idx = upper_bound(d.begin(), d.end(), val[i][j]) - d.begin();
    idx--;
    if (i > 0) dp[i][j] = max(dp[i][j], min(idx, dp[i - 1][j] - 1));
    if (j > 0) dp[i][j] = max(dp[i][j], min(idx, dp[i][j - 1] - 1));
  }
  vector<vector<int>> cnt(n + 1, vector<int>(n + 1));
  cnt[0][0] = 0;
  for (int i = 0; i < n + 1; i++) for (int j = 0; j < n + 1; j++) {
    if (i > 0 && dp[i][j] >= 0 && dp[i][j] < dp[i - 1][j]) cnt[i][j] = max(cnt[i][j], cnt[i - 1][j] + 1);
    if (j > 0 && dp[i][j] >= 0 && dp[i][j] < dp[i][j - 1]) cnt[i][j] = max(cnt[i][j], cnt[i][j - 1] + 1);
  }
  int ans = 0;
  for (int i = 0; i < n + 1; i++) for (int j = 0; j < n + 1; j++) ans = max(ans, cnt[i][j]);
  cout << ans << endl;
  return 0;
}
0