結果

問題 No.2803 Bocching Star
ユーザー YwestbuilderkYwestbuilderk
提出日時 2024-07-12 22:54:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 213,768 KB
実行使用メモリ 15,376 KB
最終ジャッジ日時 2024-07-12 22:54:11
合計ジャッジ時間 9,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 25 ms
6,940 KB
testcase_04 AC 228 ms
12,800 KB
testcase_05 AC 111 ms
8,448 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 70 ms
7,040 KB
testcase_08 AC 38 ms
6,944 KB
testcase_09 AC 259 ms
13,824 KB
testcase_10 AC 267 ms
14,080 KB
testcase_11 AC 265 ms
13,824 KB
testcase_12 AC 61 ms
6,940 KB
testcase_13 AC 206 ms
12,288 KB
testcase_14 AC 128 ms
9,216 KB
testcase_15 AC 249 ms
13,440 KB
testcase_16 AC 112 ms
8,960 KB
testcase_17 AC 36 ms
6,940 KB
testcase_18 AC 26 ms
6,940 KB
testcase_19 AC 219 ms
12,288 KB
testcase_20 AC 109 ms
8,832 KB
testcase_21 AC 82 ms
7,552 KB
testcase_22 AC 81 ms
7,552 KB
testcase_23 AC 274 ms
14,592 KB
testcase_24 AC 280 ms
15,360 KB
testcase_25 AC 296 ms
15,368 KB
testcase_26 AC 293 ms
15,372 KB
testcase_27 AC 270 ms
14,848 KB
testcase_28 AC 273 ms
14,848 KB
testcase_29 AC 287 ms
14,592 KB
testcase_30 AC 293 ms
15,376 KB
testcase_31 AC 280 ms
14,592 KB
testcase_32 AC 293 ms
15,376 KB
testcase_33 AC 3 ms
6,948 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
	int n,s;
	cin >> n >> s;
	vector<int> p(n);
	for(int i = 0;i < n;i++) cin >> p[i];
	auto t = p;
	sort(t.begin(),t.end());
	map<int,int> m;
	for(int i = 0;i < n;i++) m[p[i]]++;
	vector<int> count;
	for(int i = 0;i < n;i++){
		if(m[p[i]] > 1) continue;
		int k = lower_bound(t.begin(),t.end(),p[i]) - t.begin();
		bool b = false;
		if(!(k + 1 == n)){
			if(s >= abs(t[k] - t[k + 1])){
				b = true;
			} 
		}
		if(!(k - 1 == -1)){
			if(s >= abs(t[k] - t[k - 1])){
				 b = true;
			}
		}
		if(!b) count.emplace_back(i);
	}
	cout << count.size() << endl;
	for(auto to : count) cout << to + 1 << ' ';
	cout << endl;
}
0