結果

問題 No.2803 Bocching Star
ユーザー じきお。じきお。
提出日時 2024-07-13 00:13:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 3,045 ms
コンパイル使用メモリ 253,888 KB
実行使用メモリ 6,152 KB
最終ジャッジ日時 2024-07-13 00:13:07
合計ジャッジ時間 6,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 9 ms
5,376 KB
testcase_04 AC 45 ms
5,376 KB
testcase_05 AC 23 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 44 ms
5,376 KB
testcase_10 AC 48 ms
5,376 KB
testcase_11 AC 55 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 39 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 57 ms
5,376 KB
testcase_16 AC 30 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 42 ms
5,376 KB
testcase_20 AC 27 ms
5,376 KB
testcase_21 AC 20 ms
5,376 KB
testcase_22 AC 22 ms
5,376 KB
testcase_23 AC 54 ms
5,376 KB
testcase_24 AC 69 ms
6,016 KB
testcase_25 AC 66 ms
5,892 KB
testcase_26 AC 67 ms
5,892 KB
testcase_27 AC 58 ms
5,376 KB
testcase_28 AC 60 ms
5,504 KB
testcase_29 AC 55 ms
5,376 KB
testcase_30 AC 66 ms
6,152 KB
testcase_31 AC 51 ms
5,376 KB
testcase_32 AC 71 ms
5,896 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef LOCAL
#include <debug_print.hpp>
#define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(20);
    int N, S;
    cin >> N >> S;
    vector<int> P(N);
    for (int i = 0; i < N; i++) cin >> P[i];
    vector<int> id(N);
    iota(id.begin(), id.end(), 0);
    sort(id.begin(), id.end(), [&](int i, int j) { return P[i] < P[j]; });

    vector<int> ans;
    for (int i = 0; i < N; i++) {
        bool flag = true;
        if (0 <= i - 1) {
            if (P[id[i]] - P[id[i - 1]] <= S) flag = false;
        }
        if (i + 1 < N) {
            if (P[id[i + 1]] - P[id[i]] <= S) flag = false;
        }
        if (flag) ans.emplace_back(id[i]);
    }

    sort(ans.begin(), ans.end());
    int M = ans.size();
    cout << M << '\n';
    for (int i = 0; i < M; i++) {
        cout << ans[i] + 1 << " \n"[i == M - 1];
    }
}
0