結果

問題 No.2803 Bocching Star
ユーザー HaruiHarui
提出日時 2024-07-12 22:01:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 1,856 bytes
コンパイル時間 3,475 ms
コンパイル使用メモリ 258,324 KB
実行使用メモリ 21,112 KB
最終ジャッジ日時 2024-07-12 22:02:04
合計ジャッジ時間 12,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 27 ms
5,376 KB
testcase_04 AC 249 ms
14,024 KB
testcase_05 AC 152 ms
11,956 KB
testcase_06 AC 20 ms
5,376 KB
testcase_07 AC 80 ms
8,152 KB
testcase_08 AC 45 ms
5,752 KB
testcase_09 AC 306 ms
20,820 KB
testcase_10 AC 319 ms
20,836 KB
testcase_11 AC 285 ms
20,524 KB
testcase_12 AC 81 ms
7,868 KB
testcase_13 AC 229 ms
13,752 KB
testcase_14 AC 152 ms
12,300 KB
testcase_15 AC 289 ms
14,176 KB
testcase_16 AC 152 ms
12,112 KB
testcase_17 AC 40 ms
5,600 KB
testcase_18 AC 32 ms
5,704 KB
testcase_19 AC 259 ms
13,916 KB
testcase_20 AC 135 ms
12,116 KB
testcase_21 AC 98 ms
8,332 KB
testcase_22 AC 93 ms
8,440 KB
testcase_23 AC 346 ms
20,948 KB
testcase_24 AC 349 ms
20,976 KB
testcase_25 AC 318 ms
21,036 KB
testcase_26 AC 344 ms
20,944 KB
testcase_27 AC 339 ms
20,984 KB
testcase_28 AC 318 ms
21,092 KB
testcase_29 AC 352 ms
21,112 KB
testcase_30 AC 347 ms
20,984 KB
testcase_31 AC 321 ms
20,984 KB
testcase_32 AC 317 ms
20,988 KB
testcase_33 AC 4 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T> inline bool chmax(T& a, const T& b) {if (a<b) {a=b; return true;} return false;}
template<class T> inline bool chmin(T& a, const T& b) {if (b<a) {a=b; return true;} return false;}
const int INTINF = 1000001000;
const int INTMAX = 2147483647;
const ll LLMAX = 9223372036854775807;
const ll LLINF = 1000000000000000000;

#include "atcoder/lazysegtree.hpp"

using S_t = int;
using F_t = int;

S_t op (S_t a, S_t b) {
  return a+b;
}

S_t e() {
  return 0;
}

S_t mapping(F_t f, S_t x) {
  return x + f;
}

F_t composition(F_t f, F_t g) {
  return g + f;
}

F_t id(){
  return 0;
}

int main() {
  ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
  int N, S; cin >> N >> S;
  vector<int>P(N); for(int i=0; i<N ; i++) cin >> P[i]; 

  vector<int> cord;

  for(int i=0; i<N; i++) {
    cord.push_back(P[i]-S);
    cord.push_back(P[i]+S+1);
    cord.push_back(P[i]);
  }

  sort(cord.begin(), cord.end());
  cord.erase(unique(cord.begin(), cord.end()), cord.end());

  atcoder::lazy_segtree<S_t,op,e,F_t,mapping,composition,id> seg(cord.size());

  for(int i=0; i<N; i++) {
    // |P_i - P_J| <= S
    // -S <= P_i - P_j <= S
    // P_i - S <= P_j <= P_i + S

    int idx = lower_bound(cord.begin(), cord.end(), P[i]) - cord.begin();
    assert(binary_search(cord.begin(), cord.end(), P[i]));

    seg.apply(idx, idx+1, 1);
  }

  vector<int>ans;

  for(int i=0; i<N; i++) {
    int l_idx = lower_bound(cord.begin(), cord.end(), P[i]-S) - cord.begin();
    int r_idx = lower_bound(cord.begin(), cord.end(), P[i]+S+1) - cord.begin();
    
    int sum = seg.prod(l_idx, r_idx);
    if (sum == 1 ) {
      ans.push_back(i+1);
    }
  }

  cout << ans.size() << endl;
  for(int i=0; i<int(ans.size()); i++) {
    cout << ans[i] << " \n"[i == int(ans.size())-1];
  }

  return 0;
}
0