結果

問題 No.2935 Division Into 3 (Mex Edition)
ユーザー amesyuamesyu
提出日時 2024-09-28 17:13:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 931 bytes
コンパイル時間 3,944 ms
コンパイル使用メモリ 266,920 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-28 17:14:02
合計ジャッジ時間 9,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 = 20;
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