結果
| 問題 |
No.2080 Simple Nim Query
|
| コンテスト | |
| ユーザー |
houren
|
| 提出日時 | 2022-09-25 21:22:18 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,211 bytes |
| コンパイル時間 | 1,933 ms |
| コンパイル使用メモリ | 170,180 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-22 14:25:17 |
| 合計ジャッジ時間 | 3,478 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 1 WA * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
template <typename T>
struct BIT{
int n;
vector<T> data;
BIT(int n=0) : n(n), data(n+1){}
T sum(int i){
T res = 0;
for(; i; i -= i&-i){
res += data[i];
}
return res;
}
void add(int i, T x){
for(; i <= n; i += i&-i){
data[i] += x;
}
}
};
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n,q;
cin >> n >> q;
vector<int> a(n);
BIT<int> bit(n);
rep(i,n){
cin >> a[i];
if(a[i]==1) bit.add(i+1, 1);
}
rep(i,q){
int t,x,y;
cin >> t >> x >> y;
if(t==1){
x--;
bit.add(x+1, (y==1)-(a[x]==1));
a[x] = 1;
}else cout << ((bit.sum(y)-bit.sum(x))&1?"S\n":"F\n");
}
return 0;
}
houren