結果

問題 No.2803 Bocching Star
ユーザー Kou0406Kou0406
提出日時 2024-07-19 12:50:37
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 4,041 ms
コンパイル使用メモリ 112,688 KB
実行使用メモリ 6,604 KB
最終ジャッジ日時 2024-07-19 12:50:46
合計ジャッジ時間 8,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 11 ms
5,376 KB
testcase_04 AC 52 ms
5,576 KB
testcase_05 AC 26 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 22 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 50 ms
5,584 KB
testcase_10 AC 54 ms
5,584 KB
testcase_11 AC 65 ms
5,708 KB
testcase_12 AC 21 ms
5,376 KB
testcase_13 AC 44 ms
5,456 KB
testcase_14 AC 30 ms
5,376 KB
testcase_15 AC 66 ms
5,832 KB
testcase_16 AC 36 ms
5,376 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 47 ms
5,708 KB
testcase_20 AC 30 ms
5,376 KB
testcase_21 AC 23 ms
5,376 KB
testcase_22 AC 26 ms
5,376 KB
testcase_23 AC 60 ms
5,452 KB
testcase_24 AC 82 ms
6,480 KB
testcase_25 AC 76 ms
6,476 KB
testcase_26 AC 77 ms
6,476 KB
testcase_27 AC 64 ms
5,704 KB
testcase_28 AC 70 ms
5,840 KB
testcase_29 AC 61 ms
5,448 KB
testcase_30 AC 78 ms
6,476 KB
testcase_31 AC 58 ms
5,448 KB
testcase_32 AC 84 ms
6,604 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#define rep(i,n) for(i=0;i<(int)(n);i++)
using namespace std;
typedef long long ll;

typedef pair<int,int> p;

int n,s;

int main(){
    int i,j;
    vector<p> a;
    vector<int> ans;
    scanf("%d%d",&n,&s);
    rep(i,n){
        scanf("%d",&j);
        a.push_back(p(j,i+1));
    }
    sort(a.begin(),a.end());
    rep(i,n){
        if(i-1>=0&&abs(a[i-1].first-a[i].first)<=s)
            continue;
        if(i+1<n&&abs(a[i+1].first-a[i].first)<=s)
            continue;
        ans.push_back(a[i].second);
    }
    printf("%d\n",(int)ans.size());
    if(ans.size()){
        sort(ans.begin(),ans.end());
        rep(i,ans.size()-1)
            printf("%d ",ans[i]);
        printf("%d\n",ans[i]);
    }
    return 0;
}
0