結果

問題 No.2803 Bocching Star
ユーザー moguramogura
提出日時 2024-07-12 22:11:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 1,153 bytes
コンパイル時間 4,341 ms
コンパイル使用メモリ 239,940 KB
実行使用メモリ 20,312 KB
最終ジャッジ日時 2024-07-12 22:11:41
合計ジャッジ時間 11,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 22 ms
6,948 KB
testcase_04 AC 226 ms
15,888 KB
testcase_05 AC 83 ms
10,112 KB
testcase_06 AC 13 ms
6,940 KB
testcase_07 AC 61 ms
8,292 KB
testcase_08 AC 30 ms
6,944 KB
testcase_09 AC 222 ms
16,768 KB
testcase_10 AC 224 ms
17,408 KB
testcase_11 AC 231 ms
17,752 KB
testcase_12 AC 56 ms
7,796 KB
testcase_13 AC 176 ms
14,848 KB
testcase_14 AC 102 ms
11,136 KB
testcase_15 AC 236 ms
17,732 KB
testcase_16 AC 128 ms
11,024 KB
testcase_17 AC 28 ms
6,940 KB
testcase_18 AC 18 ms
6,940 KB
testcase_19 AC 183 ms
15,104 KB
testcase_20 AC 94 ms
10,496 KB
testcase_21 AC 70 ms
8,960 KB
testcase_22 AC 73 ms
8,948 KB
testcase_23 AC 243 ms
18,260 KB
testcase_24 AC 290 ms
20,180 KB
testcase_25 AC 282 ms
19,664 KB
testcase_26 AC 279 ms
19,796 KB
testcase_27 AC 255 ms
18,516 KB
testcase_28 AC 257 ms
19,284 KB
testcase_29 AC 244 ms
18,384 KB
testcase_30 AC 276 ms
19,920 KB
testcase_31 AC 238 ms
18,260 KB
testcase_32 AC 283 ms
20,312 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < n; i++)
#define all(a) a.begin(),a.end()
#define SORT(a) sort(all(a));
#define MIN(a) *min_element(all(a))
#define MAX(a) *max_element(all(a))
#define SUM(a) accumulate(all(a),0LL)
using ll=long long;
using ld=long double;
using ull=unsigned long;
ll MOD=998244353;
using mint = static_modint<998244353>;
const int dx[]={0,1,0,-1,1,-1,1,-1};const int dy[]={1,0,-1,0,1,1,-1,-1};
const string ALPHA="ABCDEFGHIJKLMNOPQRSTUVWXYZ";const string alpha="abcdefghijklmnopqrstuvwxyz";
int main(){
  cin.tie(nullptr);
  cout.tie(nullptr);
  ios::sync_with_stdio(false);
  ll n,s;cin>>n>>s;
  vector<ll>p(n);
  map<ll,ll>mp;
  rep(i,n){
  	cin>>p[i];
  	mp[p[i]]=i;
  }
  SORT(p);
  vector<ll>ans(0);
  rep(i,n){
    auto Iter1 = upper_bound(all(p), p[i]+s);
    auto Iter2 = upper_bound(all(p), p[i]-s-1);
    if(Iter1-Iter2==1){
    	ans.push_back(p[i]);
    }
  }
  cout<<ans.size()<<endl;
  ll c=ans.size();
  vector<ll>ans2(c);
  for(ll i=0;i<c;i++){
  	ans2[i]=mp[ans[i]]+1;
  }
  SORT(ans2);
  rep(i,c){cout<<ans2[i]<<" ";}
  
}
0