結果

問題 No.2757 Pin Game
ユーザー InTheBloomInTheBloom
提出日時 2024-05-17 21:23:58
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 87,024 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 21:24:02
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
using ll = long long;

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

    // 貪欲でOK
    int ans = 0;

    int i = 0, j = 0;
    while (i < N) {
        if (j < i) j = i;
        ans++;

        while (j < N) {
            if (X[j] - X[i] < K) {
                j++;
                continue;
            }
            break;
        }

        i = j;
    }

    cout << ans << "\n";
}
0