結果

問題 No.2803 Bocching Star
ユーザー tobbietobbie
提出日時 2024-07-27 00:31:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 177,784 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-27 00:31:55
合計ジャッジ時間 7,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 17 ms
6,944 KB
testcase_04 AC 94 ms
6,940 KB
testcase_05 AC 49 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 39 ms
6,940 KB
testcase_08 AC 21 ms
6,940 KB
testcase_09 AC 99 ms
6,940 KB
testcase_10 AC 105 ms
6,940 KB
testcase_11 AC 112 ms
6,944 KB
testcase_12 AC 36 ms
6,940 KB
testcase_13 AC 86 ms
6,944 KB
testcase_14 AC 58 ms
6,940 KB
testcase_15 AC 112 ms
6,944 KB
testcase_16 AC 60 ms
6,944 KB
testcase_17 AC 20 ms
6,940 KB
testcase_18 AC 15 ms
6,944 KB
testcase_19 AC 88 ms
6,944 KB
testcase_20 AC 55 ms
6,940 KB
testcase_21 AC 43 ms
6,940 KB
testcase_22 AC 45 ms
6,944 KB
testcase_23 AC 112 ms
6,940 KB
testcase_24 AC 134 ms
6,944 KB
testcase_25 AC 128 ms
6,944 KB
testcase_26 AC 132 ms
6,940 KB
testcase_27 AC 117 ms
6,944 KB
testcase_28 AC 123 ms
6,944 KB
testcase_29 AC 114 ms
6,940 KB
testcase_30 AC 133 ms
6,940 KB
testcase_31 AC 111 ms
6,944 KB
testcase_32 AC 136 ms
6,940 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 4 ms
6,940 KB
testcase_37 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)
using pii = pair<int, int>;

int main() {
  int n, s;
  cin >> n >> s;
  vector<pii> p(n);
  rep(i, n) {
    int pi;
    cin >> pi;
    p[i] = {pi, i};
  }
  sort(p.begin(), p.end());
  vector<int> q;
  if (n == 1)
    q.push_back(0);
  else {
    if (p[1].first - p[0].first > s) {
      q.push_back(p[0].second);
    }
    for (int i = 1; i < n-1; i++) {
      if (p[i].first - p[i-1].first > s &&
	  p[i+1].first - p[i].first > s)
	q.push_back(p[i].second);
    }
    if (p[n-1].first - p[n-2].first > s) {
      q.push_back(p[n-1].second);
    }
  }
  sort(q.begin(), q.end());
  cout << (int)q.size() << endl;
  for (int i : q)
    cout << i+1 << " ";
  if ((int)q.size() > 0)
    cout << endl;
  return 0;
}
0