結果

問題 No.3513 Greedy Yokan Party
コンテスト
ユーザー abc864197532
提出日時 2026-04-24 21:39:56
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 1,774 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,253 ms
コンパイル使用メモリ 336,824 KB
実行使用メモリ 15,108 KB
最終ジャッジ日時 2026-04-24 21:40:28
合計ジャッジ時間 18,863 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define pb push_back
#define all(a) a.begin(), a.end()
#define sz(a) ((int)a.size())
#ifdef Doludu
template <typename T>
ostream& operator << (ostream &o, vector <T> vec) {
    o << "{"; int f = 0;
    for (T i : vec) o << (f++ ? " " : "") << i;
    return o << "}";
}
void bug__(int c, auto ...a) {
    cerr << "\e[1;" << c << "m";
    (..., (cerr << a << " "));
    cerr << "\e[0m" << endl;
}
#define bug_(c, x...) bug__(c, __LINE__, "[" + string(#x) + "]", x)
#define bug(x...) bug_(32, x)
#define bugv(x...) bug_(36, vector(x))
#define safe bug_(33, "safe")
#else
#define bug(x...) void(0)
#define bugv(x...) void(0)
#define safe void(0)
#endif
const int mod = 998244353, N = 2000006;

int main() {
    ios::sync_with_stdio(false), cin.tie(0);
    int n, l, k;
    cin >> n >> l >> k;
    vector <int> a = {0};
    for (int i = 0, x; i < n; ++i) {
        cin >> x;
        a.pb(x);
    }
    a.pb(l);
    auto ask = [&](int x) {
        vector dp(sz(a), vector(3, -1 << 30));
        dp[0][0] = 0;
        for (int i = 0, pos = 0; i + 1 < sz(a); ++i) {
            for (int j = 0; j <= 2; ++j) {
                dp[i + 1][j] = max(dp[i + 1][j], dp[i][j] + 1);
            }
            while (pos < sz(a) && a[pos] < a[i] + x) pos++;
            if (pos < sz(a)) {
                for (int j = 0; j < 2; ++j) {
                    dp[pos][j + 1] = max(dp[pos][j + 1], dp[i][j] + 1);
                }
            }
        }
        int ans = dp[sz(a) - 1][2];
        bug(x, ans);
        return ans >= k + 1;
    };
    int L = 0, R = l + 1;
    while (R - L > 1) {
        int m = L + R >> 1;
        if (ask(m)) L = m;
        else R = m;
    }
    cout << L << "\n";
}
0