結果

問題 No.2803 Bocching Star
ユーザー 乾麺乾麺
提出日時 2024-07-13 20:41:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,161 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 5,674 ms
コンパイル使用メモリ 319,008 KB
実行使用メモリ 7,692 KB
最終ジャッジ日時 2024-07-13 20:42:20
合計ジャッジ時間 26,172 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 111 ms
6,940 KB
testcase_04 AC 665 ms
6,944 KB
testcase_05 AC 298 ms
6,944 KB
testcase_06 AC 53 ms
6,944 KB
testcase_07 AC 265 ms
6,944 KB
testcase_08 AC 123 ms
6,940 KB
testcase_09 AC 622 ms
6,944 KB
testcase_10 AC 700 ms
6,940 KB
testcase_11 AC 871 ms
6,944 KB
testcase_12 AC 250 ms
6,944 KB
testcase_13 AC 547 ms
6,948 KB
testcase_14 AC 379 ms
6,940 KB
testcase_15 AC 899 ms
6,940 KB
testcase_16 AC 472 ms
6,944 KB
testcase_17 AC 124 ms
6,940 KB
testcase_18 AC 76 ms
6,940 KB
testcase_19 AC 603 ms
6,944 KB
testcase_20 AC 372 ms
6,940 KB
testcase_21 AC 274 ms
6,940 KB
testcase_22 AC 311 ms
6,940 KB
testcase_23 AC 787 ms
6,940 KB
testcase_24 AC 1,161 ms
7,692 KB
testcase_25 AC 1,016 ms
7,688 KB
testcase_26 AC 1,117 ms
7,560 KB
testcase_27 AC 819 ms
6,988 KB
testcase_28 AC 964 ms
7,172 KB
testcase_29 AC 817 ms
6,940 KB
testcase_30 AC 1,084 ms
7,564 KB
testcase_31 AC 748 ms
6,944 KB
testcase_32 AC 1,161 ms
7,692 KB
testcase_33 AC 9 ms
6,940 KB
testcase_34 AC 9 ms
6,944 KB
testcase_35 AC 8 ms
6,944 KB
testcase_36 AC 8 ms
6,940 KB
testcase_37 AC 9 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pi;
#define ALL(x) x.begin(),x.end()
#define rep(i,a,b) for(int i=a;i<b;i++)
using vi = vector<int>; 
using vvi = vector<vi>; 
using li =vector<ll>;
using lli=vector<li>;
using si =vector<char>;
using ssi =vector<si>;
const long long mod=998244353;
//for (auto [key, val] : mp)
int main() { int n;ll s;cin>>n>>s;
vector<pi>P(n);
rep(i,0,n){
	ll a;cin>>a;P[i]={a,i};
}
sort(ALL(P));
vi ans;
if(n==1){
	cout<<1<<endl;
	cout<<1<<endl;
	return 0;
}
if(n==2){
	if(abs(P[1].first-P[0].first)>s){cout<<2<<endl<<1<<" "<<2;return 0;}
}
if(P[1].first-P[0].first>s)ans.push_back(P[0].second);
if(P[n-1].first-P[n-2].first>s)ans.push_back(P[n-1].second);
rep(i,1,n-1){
	if(P[i].first-P[i-1].first>s&&P[i+1].first-P[i].first>s)ans.push_back(P[i].second);
}
sort(ALL(ans));
cout<<(int)ans.size()<<endl;
rep(i,0,(int)(ans.size()))cout<<ans[i]+1<<" ";
}
0