結果

問題 No.2935 Division Into 3 (Mex Edition)
ユーザー nouka28nouka28
提出日時 2024-10-11 21:16:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 760 bytes
コンパイル時間 4,930 ms
コンパイル使用メモリ 265,120 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-10-11 21:17:17
合計ジャッジ時間 50,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2,939 ms
5,248 KB
testcase_04 AC 5,962 ms
5,248 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
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;

// naive ? uso ?
int main() {
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);

  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 << "\n";
  }
}
0