結果

問題 No.2803 Bocching Star
ユーザー vjudge1vjudge1
提出日時 2024-09-28 15:23:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,560 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 210,580 KB
実行使用メモリ 9,328 KB
最終ジャッジ日時 2024-09-28 15:23:35
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 WA -
testcase_04 AC 42 ms
8,944 KB
testcase_05 WA -
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 18 ms
6,816 KB
testcase_08 AC 11 ms
6,820 KB
testcase_09 AC 44 ms
7,664 KB
testcase_10 AC 46 ms
8,812 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
8,304 KB
testcase_14 AC 26 ms
6,816 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 8 ms
6,820 KB
testcase_19 AC 40 ms
8,428 KB
testcase_20 AC 25 ms
6,816 KB
testcase_21 AC 19 ms
6,820 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 54 ms
7,916 KB
testcase_28 AC 57 ms
8,560 KB
testcase_29 AC 53 ms
8,044 KB
testcase_30 WA -
testcase_31 AC 49 ms
7,784 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

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){
        if(is[i]) cout<<i<<" ";
    }
    return;
}
int main(){
	RIDLs_code
    int T=1;
    // cin>>T;
    while (T--) solve();
    return 0;
}
0