結果

問題 No.2803 Bocching Star
ユーザー UrtuseaUrtusea
提出日時 2024-07-13 12:40:02
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 1,275 bytes
コンパイル時間 4,851 ms
コンパイル使用メモリ 287,540 KB
実行使用メモリ 6,952 KB
最終ジャッジ日時 2024-07-13 12:40:11
合計ジャッジ時間 8,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,376 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 9 ms
5,376 KB
testcase_04 AC 49 ms
5,632 KB
testcase_05 AC 25 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 21 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 50 ms
5,632 KB
testcase_10 AC 55 ms
5,888 KB
testcase_11 AC 62 ms
5,976 KB
testcase_12 AC 20 ms
5,376 KB
testcase_13 AC 45 ms
5,504 KB
testcase_14 AC 28 ms
5,376 KB
testcase_15 AC 61 ms
6,016 KB
testcase_16 AC 34 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 47 ms
5,504 KB
testcase_20 AC 29 ms
5,376 KB
testcase_21 AC 22 ms
5,376 KB
testcase_22 AC 24 ms
5,376 KB
testcase_23 AC 63 ms
6,016 KB
testcase_24 AC 73 ms
6,820 KB
testcase_25 AC 69 ms
6,824 KB
testcase_26 AC 72 ms
6,952 KB
testcase_27 AC 60 ms
6,144 KB
testcase_28 AC 65 ms
6,188 KB
testcase_29 AC 61 ms
6,016 KB
testcase_30 AC 73 ms
6,700 KB
testcase_31 AC 60 ms
6,144 KB
testcase_32 AC 75 ms
6,700 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using Int  = int64_t;
using uInt = uint64_t;

template <typename T>
using min_heap = priority_queue<T, vector<T>, greater<T>>;
template <typename T>
using max_heap = priority_queue<T, vector<T>, less<T>>;

void solve( /* Copyright by Urtusea */ )
{
    Int n, k;
    cin >> n >> k;

    vector<Int> a(n + 1);
    for (int i = 1; i <= n; i++)
        cin >> a[i];
    
    vector<int> id(n + 1);
    iota(id.begin(), id.end(), 0);
    sort(id.begin() + 1, id.end(), [&](int l, int r) {
        return a[l] < a[r];
    });

    vector<bool> vis(n + 1);
    for (int i = 1; i <= n; i++) {
        if (i != 1) {
            if (abs(a[id[i]] - a[id[i - 1]]) <= k) vis[i] = true;
        }

        if (i != n) {
            if (abs(a[id[i]] - a[id[i + 1]]) <= k) vis[i] = true;
        }
    }

    vector<int> cnt;
    for (int i = 1; i <= n; i++) {
        if (!vis[i]) cnt.emplace_back(id[i]);
    }
    sort(cnt.begin(), cnt.end());

    cout << cnt.size() << '\n';
    for (auto &x: cnt) {
        cout << x << " \n"[x == cnt.back()];
    }
}

int main(int argc, char *argv[], char *envp[])
{
    cin.tie(nullptr)->sync_with_stdio(false);

    // for (int i = 1, n = (cin >> n, n); i <= n; i++)
        solve();

    return 0;
}
0