結果

問題 No.2803 Bocching Star
ユーザー otoshigootoshigo
提出日時 2024-07-12 21:32:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 209,944 KB
実行使用メモリ 8,052 KB
最終ジャッジ日時 2024-07-12 21:32:22
合計ジャッジ時間 5,687 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 48 ms
6,948 KB
testcase_05 AC 24 ms
6,944 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 19 ms
6,940 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 49 ms
6,940 KB
testcase_10 AC 53 ms
6,944 KB
testcase_11 AC 56 ms
6,952 KB
testcase_12 AC 18 ms
6,940 KB
testcase_13 AC 43 ms
6,940 KB
testcase_14 AC 29 ms
6,940 KB
testcase_15 AC 55 ms
6,944 KB
testcase_16 AC 30 ms
6,940 KB
testcase_17 AC 10 ms
6,940 KB
testcase_18 AC 8 ms
6,944 KB
testcase_19 AC 45 ms
6,940 KB
testcase_20 AC 27 ms
6,940 KB
testcase_21 AC 22 ms
6,944 KB
testcase_22 AC 22 ms
6,944 KB
testcase_23 AC 56 ms
6,944 KB
testcase_24 AC 65 ms
7,924 KB
testcase_25 AC 63 ms
7,920 KB
testcase_26 AC 63 ms
7,924 KB
testcase_27 AC 58 ms
7,028 KB
testcase_28 AC 60 ms
7,284 KB
testcase_29 AC 57 ms
6,944 KB
testcase_30 AC 64 ms
8,052 KB
testcase_31 AC 56 ms
6,940 KB
testcase_32 AC 66 ms
8,052 KB
testcase_33 AC 3 ms
6,944 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,S;
    cin>>N>>S;
    vector<int>P(N);
    vector<pair<int,int>>vp;
    for(int i=0;i<N;i++){
        cin>>P[i];
        vp.push_back(make_pair(P[i],i));
    }
    sort(all(vp));
    vector<int>id(N);
    for(int i=0;i<N;i++)id[vp[i].second]=i;
    vector<int>ans;
    for(int i=0;i<N;i++){
        bool ok=false;
        if(id[i]>0&&vp[id[i]-1].first>=P[i]-S)ok=true;
        if(id[i]<N-1&&vp[id[i]+1].first<=P[i]+S)ok=true;
        if(!ok)ans.push_back(i+1);
    }
    cout<<(int)ans.size()<<"\n";
    for(auto x:ans)cout<<x<<" ";
    cout<<"\n";
}
0