結果

問題 No.2803 Bocching Star
ユーザー vjudge1vjudge1
提出日時 2024-09-28 15:24:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,562 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 210,268 KB
実行使用メモリ 8,940 KB
最終ジャッジ日時 2024-09-28 15:24:43
合計ジャッジ時間 5,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 7 ms
6,816 KB
testcase_04 AC 41 ms
7,788 KB
testcase_05 AC 22 ms
6,820 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 17 ms
6,816 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 44 ms
7,660 KB
testcase_10 AC 47 ms
8,552 KB
testcase_11 AC 49 ms
7,400 KB
testcase_12 AC 15 ms
6,820 KB
testcase_13 AC 36 ms
7,792 KB
testcase_14 AC 25 ms
6,820 KB
testcase_15 AC 46 ms
7,536 KB
testcase_16 AC 26 ms
6,816 KB
testcase_17 AC 10 ms
6,816 KB
testcase_18 AC 7 ms
6,816 KB
testcase_19 AC 39 ms
8,560 KB
testcase_20 AC 23 ms
6,820 KB
testcase_21 AC 18 ms
6,816 KB
testcase_22 AC 19 ms
6,816 KB
testcase_23 AC 46 ms
7,664 KB
testcase_24 AC 58 ms
8,684 KB
testcase_25 AC 56 ms
7,400 KB
testcase_26 AC 56 ms
8,684 KB
testcase_27 AC 49 ms
7,532 KB
testcase_28 AC 56 ms
7,536 KB
testcase_29 AC 54 ms
7,536 KB
testcase_30 AC 54 ms
8,940 KB
testcase_31 AC 49 ms
7,920 KB
testcase_32 AC 55 ms
8,940 KB
testcase_33 AC 3 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
#define RIDLs_code ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define fi1(x) for(int i=1;i<=x;++i)
#define fi0(x) for(int i=0;i<x;++i)
#define fj0(x) for(int j=0;j<x;++j)
#define fj1(x) for(int j=1;j<=x;++j)
#define For(elem, begin, end) for(int elem=begin;elem<end;++elem)
#define RFor(elem, begin, end) for(int elem=begin;elem>=end;--elem)
#define all(x) (x).begin(), (x).end()
#define pb push_back
const int MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
bool is[200005]={false};
bool cmp(pair<ll, ll> a, pair<ll, ll> b)
{
    return a.first<b.first;
}
void solve(){
    int n, s, cnt=0;
    cin>>n>>s;
    vector<pair<ll, ll>> a;
    ll pos, ind;
    fi1(n){
        cin>>pos;
        a.push_back(make_pair(pos, i));

    }
    if(n==1){
        cout<<1<<endl;
        cout<<1<<endl;
        return;
    }
    sort(all(a), cmp);
    fi0(n){
        if(i==0){
            if(a[i+1].first-a[i].first>s){
                is[a[i].second]=true;
                cnt++;
            }
        }
        else if(i==n-1){
            if(a[i].first-a[i-1].first>s){
                is[a[i].second]=true;cnt++;}
        }
        else{
            if(a[i].first-a[i-1].first>s && a[i+1].first-a[i].first>s){
                is[a[i].second]=true;cnt++;}
        }
    }
    cout<<cnt<<endl;
    fi0(n+1){
        if(is[i]) cout<<i<<" ";
    }
    return;
}
int main(){
	RIDLs_code
    int T=1;
    // cin>>T;
    while (T--) solve();
    return 0;
}
0