結果

問題 No.2080 Simple Nim Query
ユーザー t98slidert98slider
提出日時 2022-09-25 21:49:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 249 ms / 3,000 ms
コード長 674 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 175,060 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-12 07:23:51
合計ジャッジ時間 4,290 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 49 ms
6,940 KB
testcase_04 AC 51 ms
6,940 KB
testcase_05 AC 249 ms
13,440 KB
testcase_06 AC 112 ms
6,944 KB
testcase_07 AC 108 ms
6,940 KB
testcase_08 AC 209 ms
11,520 KB
testcase_09 AC 212 ms
11,392 KB
testcase_10 AC 59 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, Q, T, X, Y;
    cin >> N >> Q;
    vector<int> A(N);
    set<int> S;
    for(int i = 0; i < N; i++){
        cin >> A[i];
        if(A[i] >= 2)S.insert(i);
    }
    S.insert(-1);
    while(Q--){
        cin >> T >> X >> Y;
        if(T == 1){
            X--;
            A[X] = Y;
            if(Y >= 2)S.insert(X);
            else if(S.count(X))S.erase(X);
        }else{
            X--;
            auto it = S.lower_bound(Y);
            it--;
            cout << ((Y - max(X, *it)) & 1 ? 'F' : 'S') << '\n';
        }
    }
}
0