結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー finefine
提出日時 2019-12-15 16:05:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 215 ms / 2,500 ms
コード長 1,715 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 174,476 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-07-02 18:16:24
合計ジャッジ時間 5,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 146 ms
53,120 KB
testcase_12 AC 146 ms
54,016 KB
testcase_13 AC 135 ms
47,872 KB
testcase_14 AC 19 ms
9,472 KB
testcase_15 AC 100 ms
37,632 KB
testcase_16 AC 198 ms
67,328 KB
testcase_17 AC 26 ms
11,136 KB
testcase_18 AC 206 ms
70,656 KB
testcase_19 AC 138 ms
53,632 KB
testcase_20 AC 29 ms
13,568 KB
testcase_21 AC 11 ms
7,552 KB
testcase_22 AC 20 ms
12,160 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 108 ms
40,064 KB
testcase_25 AC 215 ms
73,728 KB
testcase_26 AC 213 ms
73,856 KB
testcase_27 AC 205 ms
73,856 KB
testcase_28 AC 210 ms
73,984 KB
testcase_29 AC 192 ms
73,856 KB
testcase_30 AC 139 ms
73,856 KB
testcase_31 AC 119 ms
73,856 KB
testcase_32 AC 210 ms
73,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin >> n;
    
    vector<int> a(n + 1), b(n + 1), d(n);
    for (int i = 0; i <= n; ++i) {
        cin >> a[i];
    }
    for (int i = 0; i <= n; ++i) {
        cin >> b[i];
    }
    for (int i = 0; i < n; ++i) {
        cin >> d[i];
    }
    sort(d.begin(), d.end());

    vector< vector<int> > dp(n + 1, vector<int>(n + 1, 0));
    vector< vector<int> > memo(n + 1, vector<int>(n + 1, n));

    for (int i = 0; i <= n; ++i) {
        for (int j = 0; j <= n; ++j) {
            if (i < n) {
                int tar = a[i + 1] + b[j];
                int idx = upper_bound(d.begin(), d.begin() + memo[i][j], tar) - d.begin();
                int score = dp[i][j];
                if (idx > 0) {
                    --idx;
                    ++score;
                }
                if (dp[i + 1][j] < score || (dp[i + 1][j] == score && memo[i + 1][j] < idx)) {
                    dp[i + 1][j] = score;
                    memo[i + 1][j] = idx;
                } 
            }

            if (j < n) {
                int tar = a[i] + b[j + 1];
                int idx = upper_bound(d.begin(), d.begin() + memo[i][j], tar) - d.begin();
                int score = dp[i][j];
                if (idx > 0) {
                    --idx;
                    ++score;
                }
                if (dp[i][j + 1] < score || (dp[i][j + 1] == score && memo[i][j + 1] < idx)) {
                    dp[i][j + 1] = score;
                    memo[i][j + 1] = idx;
                } 
            }
        }
    }
    cout << dp[n][n] << "\n";
    return 0;
}
0