結果

問題 No.2080 Simple Nim Query
ユーザー roarisroaris
提出日時 2022-09-25 22:49:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 340 ms / 3,000 ms
コード長 1,514 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 205,500 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 07:25:43
合計ジャッジ時間 5,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 236 ms
6,944 KB
testcase_04 AC 235 ms
6,940 KB
testcase_05 AC 336 ms
6,944 KB
testcase_06 AC 330 ms
6,940 KB
testcase_07 AC 329 ms
6,940 KB
testcase_08 AC 323 ms
6,940 KB
testcase_09 AC 324 ms
6,940 KB
testcase_10 AC 340 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
typedef long long ll;

struct BIT {
    int size;
    vector<int> node;
    
    BIT(int n) {
        size = n;
        node.resize(n+1);
    }
    
    void add(int i, int x) {
        i++;
        while (i<=size) {
            node[i] += x;
            i += i&(-i);
        }
    }
    
    int acc(int i) {
        int s = 0;
        while (i>0) {
            s += node[i];
            i -= i&(-i);
        }
        return s;
    }
};

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    
    int N, Q; cin >> N >> Q;
    int A[N]; 
    rep(i, N) {
        int x; cin >> x;
        A[i] = (x == 1 ? 1 : 0);
    }
    
    BIT bit(N);
    rep(i, N) bit.add(i, A[i]);
    
    while (Q--) {
        int T, X, Y; cin >> T >> X >> Y;
        
        if (T==1) {
            X--;
            bit.add(X, -A[X]);
            A[X] = (Y == 1 ? 1 : 0);
            bit.add(X, A[X]);
        } else {
            int l = 0;
            int r = Y-X+1;
            while (l<=r) {
                int m = (l+r)/2;
                int c = bit.acc(Y)-bit.acc(Y-m);
                if (c==m) l = m+1;
                else r = m-1;
            }
            if (r==Y-X+1) {
                if (r%2==0) cout << "S" << endl;
                else cout << "F" << endl;
            } else {
                if (r%2==0) cout << "F" << endl;
                else cout << "S" << endl;
            }
        }
    }
}
0