結果

問題 No.2803 Bocching Star
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-20 22:53:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 2,599 ms
コンパイル使用メモリ 213,776 KB
実行使用メモリ 8,604 KB
最終ジャッジ日時 2024-10-20 22:53:25
合計ジャッジ時間 7,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 9 ms
6,820 KB
testcase_04 AC 44 ms
6,820 KB
testcase_05 AC 20 ms
6,816 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 19 ms
6,816 KB
testcase_08 AC 9 ms
6,820 KB
testcase_09 AC 40 ms
6,820 KB
testcase_10 AC 43 ms
6,816 KB
testcase_11 AC 52 ms
7,168 KB
testcase_12 AC 18 ms
6,820 KB
testcase_13 AC 37 ms
6,820 KB
testcase_14 AC 25 ms
6,820 KB
testcase_15 AC 54 ms
7,172 KB
testcase_16 AC 30 ms
6,816 KB
testcase_17 AC 9 ms
6,824 KB
testcase_18 AC 7 ms
6,816 KB
testcase_19 AC 42 ms
6,816 KB
testcase_20 AC 25 ms
6,816 KB
testcase_21 AC 19 ms
6,816 KB
testcase_22 AC 22 ms
6,820 KB
testcase_23 AC 54 ms
6,912 KB
testcase_24 AC 69 ms
8,604 KB
testcase_25 AC 63 ms
8,480 KB
testcase_26 AC 67 ms
8,484 KB
testcase_27 AC 53 ms
7,580 KB
testcase_28 AC 60 ms
7,424 KB
testcase_29 AC 52 ms
6,944 KB
testcase_30 AC 69 ms
8,600 KB
testcase_31 AC 47 ms
6,944 KB
testcase_32 AC 68 ms
8,568 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 3 ms
6,816 KB
testcase_35 AC 3 ms
6,816 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N, S, P;
    cin >> N >> S;
    vector<ll> v;
    vector<pair<ll, ll>> w(N+2);
    w[0] = {-1e18, 0};
    w[N+1] = {1e18, N+1};
    for (int i=1; i<=N; i++){
        cin >> P;
        w[i] = {P, i};
    }
    sort(w.begin(), w.end());
    for (int i=1; i<=N; i++){
        if (w[i].first-w[i-1].first>S && w[i+1].first-w[i].first>S){
            v.push_back(w[i].second);
        }
    }
    sort(v.begin(), v.end());
    cout << v.size() << endl;
    for (auto x : v) cout << x << " ";
    cout << endl;

    return 0;
}
0