結果

問題 No.2935 Division Into 3 (Mex Edition)
ユーザー amesyuamesyu
提出日時 2024-09-28 17:14:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 935 bytes
コンパイル時間 3,697 ms
コンパイル使用メモリ 266,128 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-09-28 17:14:31
合計ジャッジ時間 11,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,400 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 100001;
bitset<MAX_N> bs1,bs2,bs3;

// naive ? uso ?
int main() {

  int n;
  cin >> n;
  vector<int> a(n);
  for(int i=0;i<n;++i) cin >> a[i];
  int q;
  cin >> q;
  int ansi = 0;
  while(q--) {
    int l, r;
    cin >> l >> r;
    l ^= ansi;
    r ^= ansi;

    for(int i=l-1;i<r;++i) {
      int v = a[i];
      if(v >= r-l) continue;
      if(bs2[v]) bs3.set(v);
      if(bs1[v]) bs2.set(v);
      bs1.set(v);
    }
    
    int mex1=0,mex2=0,mex3=0;
    for(int i=0;bs1[i];++i) mex1++;
    for(int i=0;bs2[i];++i) mex2++;
    for(int i=0;bs3[i];++i) mex3++;

    for(int i=0;i<r-l;++i) {
      bs1.reset(i);bs2.reset(i);bs3.reset(i);
    }

    ansi = mex1+mex2+mex3;
    if(mex3==0) ansi=min(ansi, r-l);
    if(mex2==0) ansi=min(ansi, r-l-1);
    cout << ansi << endl;
  }
}
0