結果

問題 No.2803 Bocching Star
ユーザー k82bk82b
提出日時 2024-07-12 21:08:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,177 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 218,188 KB
実行使用メモリ 16,280 KB
最終ジャッジ日時 2024-07-12 21:09:40
合計ジャッジ時間 8,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 21 ms
5,376 KB
testcase_04 AC 147 ms
13,568 KB
testcase_05 AC 74 ms
8,704 KB
testcase_06 AC 13 ms
5,376 KB
testcase_07 AC 57 ms
7,296 KB
testcase_08 AC 32 ms
5,504 KB
testcase_09 AC 172 ms
14,464 KB
testcase_10 AC 160 ms
14,848 KB
testcase_11 AC 195 ms
14,464 KB
testcase_12 AC 51 ms
6,912 KB
testcase_13 AC 127 ms
12,672 KB
testcase_14 AC 87 ms
9,728 KB
testcase_15 AC 197 ms
14,080 KB
testcase_16 AC 89 ms
9,344 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 19 ms
5,376 KB
testcase_19 AC 135 ms
12,928 KB
testcase_20 AC 83 ms
9,216 KB
testcase_21 AC 62 ms
7,936 KB
testcase_22 AC 63 ms
7,936 KB
testcase_23 AC 196 ms
15,488 KB
testcase_24 AC 201 ms
16,152 KB
testcase_25 AC 195 ms
16,152 KB
testcase_26 AC 196 ms
16,152 KB
testcase_27 AC 188 ms
15,616 KB
testcase_28 AC 209 ms
15,616 KB
testcase_29 AC 198 ms
15,360 KB
testcase_30 AC 205 ms
16,152 KB
testcase_31 AC 170 ms
15,360 KB
testcase_32 AC 254 ms
16,280 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define REP(i,n)for(int i=0;i<(n);++i)
#define REP1(i,n)for(int i=1;i<=(n);++i)
#define FORE(...)for(auto&&__VA_ARGS__)
#define ALL(x)begin(x),end(x)
#define mset(x,y)memset(x,y,sizeof x)
#define pb push_back
#define eb emplace_back
#define V vector
#define lb(x,y)(lower_bound(begin(x),end(x),y)-begin(x))
#define ub(x,y)(upper_bound(begin(x),end(x),y)-begin(x))
template<class T,class S>inline bool chmin(T&A,S B){return A>B?A=B,1:0;}
template<class T,class S>inline bool chmax(T&A,S B){return A<B?A=B,1:0;}
void fastIO(){ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);}
using Int=long long;
using Real=long double;
using PII=pair<int,int>;
using PLL=pair<Int,Int>;
int main(){
	int N,S;cin>>N>>S;
	V<PII>P(N);
	REP(i,N){
		cin>>P[i].first;
		P[i].second=i;
	}
	sort(ALL(P));
	map<int,int>mp;
	V<int>PP(N);
	REP(i,N)PP[i]=P[i].first,++mp[PP[i]];
	V<int>ans;
	REP(i,N){
		int idL=lb(PP,PP[i]-S);
		int idR=lb(PP,PP[i]+1);
		if(PP[idL]==PP[i]&&(idR==N||PP[i]+S<PP[idR])&&mp[PP[i]]==1){
			ans.pb(P[i].second+1);
		}
	}
	sort(ALL(ans));
	cout<<size(ans)<<endl;
	REP(i,size(ans))cout<<ans[i]<<" \n"[i==size(ans)-1];
}
0