結果

問題 No.2803 Bocching Star
ユーザー daiotadaiota
提出日時 2024-07-12 23:58:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 177,044 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-07-12 23:58:07
合計ジャッジ時間 4,910 ms
ジャッジサーバーID
(参考情報)
judge6 / 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 9 ms
5,376 KB
testcase_04 AC 42 ms
5,376 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 44 ms
5,376 KB
testcase_10 AC 46 ms
5,376 KB
testcase_11 AC 53 ms
5,376 KB
testcase_12 AC 17 ms
5,376 KB
testcase_13 AC 36 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 52 ms
5,376 KB
testcase_16 AC 29 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 37 ms
5,376 KB
testcase_20 AC 25 ms
5,376 KB
testcase_21 AC 19 ms
5,376 KB
testcase_22 AC 20 ms
5,376 KB
testcase_23 AC 50 ms
5,376 KB
testcase_24 AC 71 ms
5,816 KB
testcase_25 AC 61 ms
6,016 KB
testcase_26 AC 63 ms
5,944 KB
testcase_27 AC 53 ms
5,504 KB
testcase_28 AC 56 ms
5,504 KB
testcase_29 AC 50 ms
5,376 KB
testcase_30 AC 64 ms
5,892 KB
testcase_31 AC 47 ms
5,376 KB
testcase_32 AC 64 ms
5,892 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;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)







int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	int i,j;

	int N,S;
	cin >> N >> S;

	if(N==1){
		cout << 1 << endl;
		cout << 1 << endl;
		return 0;
	}

	vector<P> v(N);
	REP(i,N){
		cin >> v[i].first;
		v[i].second=i+1;
	}

	sort(v.begin(),v.end());


	vector<int> a;
	REP(i,N){
		if(i==0){
			if(v[1].first-v[0].first>S) a.push_back(v[0].second);
		}
		else if(i==N-1){
			if(v[N-1].first-v[N-2].first>S) a.push_back(v[N-1].second);
		}
		else{
			if(v[i].first-v[i-1].first>S && v[i+1].first-v[i].first>S) a.push_back(v[i].second);

		}

	}


	int m=a.size();
	cout << m << endl;

	sort(a.begin(),a.end());

	REP(i,m) cout << a[i] << ' ';
	cout << endl;




	return 0;

}
0