結果

問題 No.2935 Division Into 3 (Mex Edition)
ユーザー amesyuamesyu
提出日時 2024-09-25 20:54:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 704 bytes
コンパイル時間 3,884 ms
コンパイル使用メモリ 265,356 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-27 04:48:39
合計ジャッジ時間 48,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2,842 ms
5,376 KB
testcase_04 AC 5,799 ms
5,376 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 3,273 ms
6,940 KB
testcase_12 AC 5,344 ms
6,948 KB
testcase_13 TLE -
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;

// 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;

    int ans1=0,ans2=0,ans3=0;
    vector<short> c(r-l+3,0);
    for(int i=l-1;i<r;++i) {
      if(a[i] < r-l+3) c[a[i]]++;
    }
    
    int mex1=0,mex2=0,mex3=0;
    for(int i=0;c[i]>0;++i) mex1++;
    for(int i=0;c[i]>1;++i) mex2++;
    for(int i=0;c[i]>2;++i) mex3++;
    ansi = min(mex1+mex2+mex3, r-l-1);
    cout << ansi << endl;
  }
}
0