結果
問題 | No.2080 Simple Nim Query |
ユーザー | みここ |
提出日時 | 2022-12-12 21:54:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 552 ms / 3,000 ms |
コード長 | 659 bytes |
コンパイル時間 | 623 ms |
コンパイル使用メモリ | 79,216 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-06-12 07:30:00 |
合計ジャッジ時間 | 4,876 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 291 ms
6,944 KB |
testcase_04 | AC | 301 ms
6,940 KB |
testcase_05 | AC | 552 ms
12,800 KB |
testcase_06 | AC | 423 ms
6,940 KB |
testcase_07 | AC | 399 ms
6,940 KB |
testcase_08 | AC | 478 ms
11,008 KB |
testcase_09 | AC | 470 ms
11,008 KB |
testcase_10 | AC | 383 ms
6,944 KB |
ソースコード
#include <iostream> #include <set> using namespace std; int main() { int n, q; cin >> n >> q; set<int> st; st.insert(-1); for (int i = 0; i < n; i++) { int a; cin >> a; if (a >= 2) { st.insert(i); } } while (q--) { int t, x, y; cin >> t >> x >> y; x--; if (t == 1) { st.erase(x); if (y >= 2) { st.insert(x); } } else { int i = max(x, *--st.lower_bound(y)); cout << ((y - i) % 2 ? "F" : "S") << endl; } } }