結果

問題 No.2080 Simple Nim Query
ユーザー roarisroaris
提出日時 2022-09-25 22:39:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,280 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 203,808 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-01 23:43:10
合計ジャッジ時間 5,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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) cin >> A[i];
    
    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;
            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%2==0) cout << "F" << endl;
            else cout << "S" << endl;
        }
    }
}
0