結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー LeonardoneLeonardone
提出日時 2019-12-12 21:35:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,500 ms
コード長 1,152 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 79,412 KB
実行使用メモリ 63,908 KB
最終ジャッジ日時 2024-06-25 17:14:09
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 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,944 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 3 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 104 ms
46,200 KB
testcase_12 AC 83 ms
46,848 KB
testcase_13 AC 85 ms
41,472 KB
testcase_14 AC 11 ms
8,484 KB
testcase_15 AC 59 ms
32,008 KB
testcase_16 AC 125 ms
58,240 KB
testcase_17 AC 13 ms
10,112 KB
testcase_18 AC 138 ms
61,040 KB
testcase_19 AC 95 ms
46,464 KB
testcase_20 AC 17 ms
12,160 KB
testcase_21 AC 9 ms
7,040 KB
testcase_22 AC 15 ms
10,880 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 60 ms
34,304 KB
testcase_25 AC 137 ms
63,872 KB
testcase_26 AC 128 ms
63,872 KB
testcase_27 AC 121 ms
63,836 KB
testcase_28 AC 125 ms
63,908 KB
testcase_29 AC 123 ms
63,892 KB
testcase_30 AC 120 ms
63,872 KB
testcase_31 AC 121 ms
63,872 KB
testcase_32 AC 126 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
using namespace std;

int main() {
    int n; cin >> n; int n1 = n+1;
    vector<int> a(n1), b(n1), d(n);
    for (int i = 0; i < n1; i++) cin >> a[i];
    for (int i = 0; i < n1; i++) cin >> b[i];
    for (int i = 0; i < n; i++) cin >> d[i];
    
    sort(d.begin(), d.end());
    
    vector<vector<int>> es(n1);
    for (int i = 0; i < n1; i++) {
        for (int j = 0; j < n1; j++) {
            int p = i + j;
            if (p > n) { continue; }
            es[p].push_back(i * n1 + j);
        }
    }
    
    vector<int> m(n1*n1, 0);
    for (int p = n; p > 0; p--) {
        for (int e : es[p]) {
            int i = e / n1;
            int j = e % n1;
            int s = m[e];
            int r = a[i] + b[j];
            if (s < n && d[s] <= r) {
                s++;
            }
            int u = e - 1;
            if (u >= 0 && s > m[u]) {
                m[u] = s;
            }
            int v = e - n1;
            if (v >= 0 && s > m[v]) {
                m[v] = s;
            }
        }
    }
    
    cout << m[0] << endl;
    
    return 0;
}
0