結果

問題 No.2803 Bocching Star
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-08-05 12:36:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 212,908 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-05 12:36:16
合計ジャッジ時間 7,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 16 ms
6,944 KB
testcase_04 AC 84 ms
6,944 KB
testcase_05 AC 49 ms
6,940 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 34 ms
6,940 KB
testcase_08 AC 18 ms
6,944 KB
testcase_09 AC 87 ms
6,944 KB
testcase_10 AC 92 ms
6,940 KB
testcase_11 AC 98 ms
6,940 KB
testcase_12 AC 30 ms
6,944 KB
testcase_13 AC 76 ms
6,944 KB
testcase_14 AC 52 ms
6,944 KB
testcase_15 AC 99 ms
6,940 KB
testcase_16 AC 53 ms
6,940 KB
testcase_17 AC 17 ms
6,940 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 77 ms
6,944 KB
testcase_20 AC 49 ms
6,940 KB
testcase_21 AC 39 ms
6,940 KB
testcase_22 AC 39 ms
6,940 KB
testcase_23 AC 112 ms
6,940 KB
testcase_24 AC 122 ms
6,944 KB
testcase_25 AC 118 ms
6,940 KB
testcase_26 AC 119 ms
6,944 KB
testcase_27 AC 103 ms
6,940 KB
testcase_28 AC 108 ms
6,940 KB
testcase_29 AC 101 ms
6,944 KB
testcase_30 AC 117 ms
6,940 KB
testcase_31 AC 97 ms
6,944 KB
testcase_32 AC 135 ms
6,940 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n, s;
    cin >> n >> s;
    vector<pair<int, int>> p;
    for (int i = 1; i <= n; i++) {
        int x;
        cin >> x;
        p.emplace_back(x, i);
    }
    sort(p.begin(), p.end());
    vector<int> ans;
    for (int i = 0; i < n; i++) {
        int x = p[i].first;
        bool ok = false;
        if (i - 1 >= 0 && x - p[i - 1].first <= s) {
            ok = true;
        }
        if (i + 1 < n && p[i + 1].first - x <= s) {
            ok = true;
        }
        if (!ok) {
            ans.emplace_back(p[i].second);
        }
    }
    sort(ans.begin(), ans.end());
    cout << ans.size() << endl;
    for (int x : ans) {
        cout << x << " ";
    }
    cout << endl;
}
0