結果

問題 No.2434 RAKUTAN de RAKUTAN
ユーザー rniyarniya
提出日時 2023-08-18 22:43:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 2,601 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 211,320 KB
実行使用メモリ 398,976 KB
最終ジャッジ日時 2024-05-06 05:05:31
合計ジャッジ時間 5,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 15 ms
17,664 KB
testcase_04 AC 14 ms
17,280 KB
testcase_05 AC 15 ms
16,896 KB
testcase_06 AC 17 ms
18,176 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 438 ms
396,672 KB
testcase_11 AC 402 ms
398,976 KB
testcase_12 AC 385 ms
398,976 KB
testcase_13 AC 390 ms
398,848 KB
testcase_14 AC 391 ms
398,464 KB
testcase_15 AC 32 ms
34,432 KB
testcase_16 AC 26 ms
30,208 KB
testcase_17 AC 30 ms
34,432 KB
testcase_18 AC 25 ms
28,032 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 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>
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...) void(0)
#endif

using namespace std;

typedef long long ll;
#define all(x) begin(x), end(x)
constexpr int INF = (1 << 30) - 1;
constexpr long long IINF = (1LL << 60) - 1;
constexpr int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};

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

template <class T> ostream& operator<<(ostream& os, const vector<T>& v) {
    auto sep = "";
    for (const auto& x : v) os << exchange(sep, " ") << x;
    return os;
}

template <class T, class U = T> bool chmin(T& x, U&& y) { return y < x and (x = forward<U>(y), true); }

template <class T, class U = T> bool chmax(T& x, U&& y) { return x < y and (x = forward<U>(y), true); }

template <class T> void mkuni(vector<T>& v) {
    sort(begin(v), end(v));
    v.erase(unique(begin(v), end(v)), end(v));
}

template <class T> int lwb(const vector<T>& v, const T& x) { return lower_bound(begin(v), end(v), x) - begin(v); }

const int MAX = 10010;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N, H, X;
    cin >> N >> H >> X;
    int G;
    cin >> G;
    vector<int> g(G);
    for (int& x : g) cin >> x;
    int B;
    cin >> B;
    vector<int> b(B);
    for (int& x : b) cin >> x;

    sort(all(g));
    sort(all(b));
    vector<int> cand;
    cand.emplace_back(0);
    cand.emplace_back(N);
    for (int& x : g) {
        for (int i = 0; i <= X; i++) {
            if (x - i > 0) {
                cand.emplace_back(x - i);
            }
        }
    }
    for (int& x : b) {
        for (int i = 0; i <= X; i++) {
            if (x - i > 0) {
                cand.emplace_back(x - i);
            }
        }
    }
    mkuni(cand);
    int len = cand.size();
    chmin(H, MAX);
    vector dp(len, vector<int>(H + 1, -INF));
    dp[0][0] = 0;
    for (int i = 0, p = 0, q = 0, k = 0; i < len; i++) {
        while (p < G and g[p] < cand[i]) p++;
        while (q < B and b[q] < cand[i]) q++;
        int add = 0;
        if (p < G and g[p] == cand[i]) add++;
        if (q < B and b[q] == cand[i]) add--;
        int to = cand[i] + X;
        while (k < len and cand[k] < to) k++;
        for (int j = 0; j <= H; j++) {
            int& val = dp[i][j];
            if (val == -INF) continue;
            val += add;
            if (i + 1 < len) chmax(dp[i + 1][j], val);
            if (k < len and j + 1 <= H) chmax(dp[k][j + 1], val);
        }
    }

    int ans = *max_element(all(dp.back()));
    cout << ans << '\n';
    return 0;
}
0