結果

問題 No.2080 Simple Nim Query
ユーザー ripityripity
提出日時 2022-10-30 10:24:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 449 ms / 3,000 ms
コード長 936 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 205,512 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 07:30:06
合計ジャッジ時間 5,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 268 ms
6,944 KB
testcase_04 AC 288 ms
6,940 KB
testcase_05 AC 449 ms
6,944 KB
testcase_06 AC 415 ms
6,940 KB
testcase_07 AC 428 ms
6,940 KB
testcase_08 AC 410 ms
6,944 KB
testcase_09 AC 410 ms
6,944 KB
testcase_10 AC 412 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/fenwicktree>
using namespace std;
using namespace atcoder;
int main() {
  int N, Q;
  cin >> N >> Q;
  vector<int> A(N);
  fenwick_tree<int> fw(N);
  for( int i = 0; i < N; i++ ) {
    cin >> A[i];
    A[i] = ( A[i] == 1 );
    fw.add(i, A[i]);
  }
  for( int q = 0; q < Q; q++ ) {
    int T, X, Y;
    cin >> T >> X >> Y;
    if( T == 1 ) {
      X--;
      Y = ( Y == 1 );
      if( A[X] == 0 && Y == 1 ) fw.add(X, 1);
      else if( A[X] == 1 && Y == 0 ) fw.add(X, -1);
      A[X] = Y;
    }else {
      X--;
      Y--;
      int l = X, r = Y+1, m;
      while( l < r ) {
        m = (l+r)>>1;
        if( fw.sum(m, Y+1) != Y+1-m ) l = m+1;
        else r = m;
      }
      int k = Y+1-l;
      if( l == X ) {
        if( k&1 ) cout << 'F' << '\n';
        else cout << 'S' << '\n';
      }else {
        if( k&1 ) cout << 'S' << '\n';
        else cout << 'F' << '\n';
      }
    }
  }
}
0