結果

問題 No.2434 RAKUTAN de RAKUTAN
ユーザー t98slidert98slider
提出日時 2023-08-19 14:52:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 178,484 KB
実行使用メモリ 60,032 KB
最終ジャッジ日時 2024-05-06 21:56:34
合計ジャッジ時間 3,161 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 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 81 ms
59,776 KB
testcase_11 AC 81 ms
60,032 KB
testcase_12 AC 80 ms
59,904 KB
testcase_13 AC 80 ms
59,776 KB
testcase_14 AC 81 ms
59,904 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, h, x, g, b;
    cin >> n >> h >> x >> g;
    vector<int> G(g), ca;
    cin >> G >> b;
    vector<int> B(b);
    cin >> B;
    ca.reserve(2 * x * (g + b));
    for(auto &&v : G){
        for(int d = -x; d <= x; d++){
            int nv = v + d;
            if(nv < 0 || nv > n) continue;
            ca.push_back(nv);
        }
    }
    for(auto &&v : B){
        for(int d = -x; d <= x; d++){
            int nv = v + d;
            if(nv < 0 || nv > n) continue;
            ca.push_back(nv);
        }
    }
    for(int i = 0; i <= min(x, n); i++){
        ca.push_back(i);
        ca.push_back(n - i);
    }
    sort(ca.begin(), ca.end());
    ca.erase(unique(ca.begin(), ca.end()), ca.end());
    int m = ca.size();
    vector<int> tb(m);
    for(auto &&v : G){
        int j = lower_bound(ca.begin(), ca.end(), v) - ca.begin();
        tb[j] = 1;
    }
    for(auto &&v : B){
        int j = lower_bound(ca.begin(), ca.end(), v) - ca.begin();
        tb[j] = -1;
    }
    h = min({h, m, b});
    vector<vector<int>> dp(m, vector<int>(h + 1, -(1 << 30)));
    dp[0][h] = 0;
    for(int i = 0; i + 1 < m; i++){
        for(int j = 0; j <= h; j++){
            dp[i + 1][j] = max(dp[i + 1][j], dp[i][j] + tb[i + 1]);
            if(j >= 1 && i + x < m){
                dp[i + x][j - 1] = max(dp[i + x][j - 1], dp[i][j] + tb[i + x]);
            }
        }
    }
    cout << *max_element(dp.back().begin(), dp.back().end()) << '\n';
}
0