結果

問題 No.2803 Bocching Star
ユーザー reirei
提出日時 2024-07-12 21:11:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 118,396 KB
実行使用メモリ 8,600 KB
最終ジャッジ日時 2024-07-12 21:11:48
合計ジャッジ時間 4,757 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 12 ms
5,376 KB
testcase_04 AC 62 ms
6,400 KB
testcase_05 AC 30 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 62 ms
6,400 KB
testcase_10 AC 65 ms
6,656 KB
testcase_11 AC 73 ms
7,296 KB
testcase_12 AC 24 ms
5,376 KB
testcase_13 AC 52 ms
6,144 KB
testcase_14 AC 35 ms
5,376 KB
testcase_15 AC 77 ms
7,176 KB
testcase_16 AC 42 ms
5,912 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 9 ms
5,376 KB
testcase_19 AC 58 ms
6,016 KB
testcase_20 AC 33 ms
5,376 KB
testcase_21 AC 26 ms
5,376 KB
testcase_22 AC 29 ms
5,376 KB
testcase_23 AC 68 ms
7,040 KB
testcase_24 AC 97 ms
8,476 KB
testcase_25 AC 84 ms
8,476 KB
testcase_26 AC 83 ms
8,600 KB
testcase_27 AC 70 ms
7,452 KB
testcase_28 AC 78 ms
7,452 KB
testcase_29 AC 75 ms
6,992 KB
testcase_30 AC 89 ms
8,480 KB
testcase_31 AC 70 ms
6,912 KB
testcase_32 AC 91 ms
8,472 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 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;
using i8 = int8_t;
using i32 = int;
using i64 = long long;
// using i128 = __int128;
using u64 = unsigned long long;
using ll = long long;

void _main();
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  _main();
}

i64 pow(i64 j, i64 n) {
  i64 res = 1;
  while (n > 0) {
    if (n & 1)
      res *= j;
    j *= j;
    n >>= 1;
  }
  return res;
}

i64 n, s;
void _main() {
  cin >> n >> s;
  vector<pair<i64, i64>> p(n);
  for (i64 i = 0; i < n; i++) {
    cin >> p[i].first;
    p[i].second = i;
  }
  sort(p.begin(), p.end());
  vector<i64> ans;
  for (i64 i = 0; i < n; i++) {
    i64 f = lower_bound(p.begin(), p.end(), make_pair(p[i].first - s, 0ll)) -
            p.begin();
    i64 b =
        upper_bound(p.begin(), p.end(), make_pair(p[i].first + s, 1ll << 60)) -
        p.begin() - 1;
    if (f == i && b == i) {
      ans.push_back(p[i].second);
    }
  }
  sort(ans.begin(), ans.end());
  cout << ans.size() << "\n";
  for (i64 i = 0; i < ans.size(); i++) {
    cout << ans[i] + 1 << (i + 1 == ans.size() ? "\n" : " ");
  }
}
0