結果

問題 No.2803 Bocching Star
ユーザー tanaka255tanaka255
提出日時 2024-07-12 21:47:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 206,328 KB
実行使用メモリ 14,616 KB
最終ジャッジ日時 2024-07-12 21:47:53
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 14 ms
5,376 KB
testcase_04 AC 147 ms
12,160 KB
testcase_05 AC 61 ms
8,320 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 40 ms
6,828 KB
testcase_08 AC 22 ms
5,376 KB
testcase_09 AC 144 ms
13,184 KB
testcase_10 AC 161 ms
13,696 KB
testcase_11 AC 152 ms
12,928 KB
testcase_12 AC 35 ms
6,472 KB
testcase_13 AC 127 ms
11,648 KB
testcase_14 AC 74 ms
9,088 KB
testcase_15 AC 144 ms
12,664 KB
testcase_16 AC 67 ms
8,448 KB
testcase_17 AC 19 ms
5,376 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 123 ms
11,776 KB
testcase_20 AC 67 ms
8,576 KB
testcase_21 AC 49 ms
7,424 KB
testcase_22 AC 48 ms
7,304 KB
testcase_23 AC 190 ms
13,824 KB
testcase_24 AC 184 ms
14,488 KB
testcase_25 AC 168 ms
14,492 KB
testcase_26 AC 181 ms
14,484 KB
testcase_27 AC 168 ms
13,952 KB
testcase_28 AC 180 ms
13,980 KB
testcase_29 AC 169 ms
13,724 KB
testcase_30 AC 173 ms
14,484 KB
testcase_31 AC 174 ms
13,844 KB
testcase_32 AC 175 ms
14,616 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 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;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
template<typename T>
bool chmax(T &a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}
template<typename T>
bool chmin(T &a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
void solve();
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  cout << fixed << setprecision(20);
  int t = 1;
  //cin >> t;
  while (t--) {
    solve();
  }
}
int N,S,P[2<<17];
multiset<int>st;
void solve() {
  cin>>N>>S;
  rep(i,N)cin>>P[i];

  rep(i,N)st.insert(P[i]);
  vector<int>ans;
  rep(i,N){
    bool flag=1;
    auto it=st.lower_bound(P[i]);
    if(it!=st.begin()){
      --it;
      if(P[i]-*it<=S)flag=0;
      ++it;
    }
    ++it;
    if(it!=st.end()){
      if(*it-P[i]<=S)flag=0;
    }
    if(flag)ans.emplace_back(i);
  }
  cout<<ans.size()<<endl;
  rep(i,ans.size())cout<<ans[i]+1<<" \n"[i+1==(int)ans.size()];
}
0