結果

問題 No.2757 Pin Game
ユーザー Today03Today03
提出日時 2024-05-17 22:17:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 2,525 ms
コンパイル使用メモリ 206,068 KB
実行使用メモリ 8,692 KB
最終ジャッジ日時 2024-05-17 22:17:42
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 138 ms
8,308 KB
testcase_05 AC 149 ms
8,692 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 49 ms
6,940 KB
testcase_11 AC 48 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int N, K;
    cin >> N >> K;
    vector<ll> X(N);
    for (int i = 0; i < N; i++) {
        cin >> X[i];
    }
    X.push_back(INFL);

    vector<int> dp(N + 1, -INF);
    dp[0] = 0;

    for (int i = 0; i < N; i++) {
        int idx = lower_bound(X.begin(), X.end(), X[i] + K) - X.begin();
        dp[idx] = max(dp[idx], dp[i] + 1);
    }

    cout << dp[N] << endl;
}
0