結果

問題 No.2080 Simple Nim Query
ユーザー CleyLCleyL
提出日時 2022-09-27 23:41:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 606 ms / 3,000 ms
コード長 505 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 79,016 KB
実行使用メモリ 12,724 KB
最終ジャッジ日時 2023-09-03 02:50:51
合計ジャッジ時間 5,359 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 293 ms
4,376 KB
testcase_04 AC 306 ms
4,376 KB
testcase_05 AC 606 ms
12,724 KB
testcase_06 AC 416 ms
5,568 KB
testcase_07 AC 416 ms
5,544 KB
testcase_08 AC 517 ms
11,088 KB
testcase_09 AC 526 ms
10,864 KB
testcase_10 AC 392 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
using namespace std;
int main(){
  int n,q;cin>>n>>q;
  set<int> A;
  A.insert(-1);
  for(int i = 0; n > i; i++){
    int x;cin>>x;
    if(x != 1)A.insert(i);
  }
  for(int i = 0; q > i; i++){
    int t,x,y;cin>>t>>x>>y;
    if(t==1){
      if(y == 1)A.erase(--x);
      else A.insert(--x);
    }else{
      auto z = --A.lower_bound(y);
      if(*z >= x-1){
        cout << "SF"[(y-*z)%2] << endl;
      }else{
        cout << "FS"[(y-x)%2] << endl;
      }
    }
  }
}
0