結果
| 問題 |
No.2080 Simple Nim Query
|
| コンテスト | |
| ユーザー |
houren
|
| 提出日時 | 2022-09-25 21:40:37 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,394 bytes |
| コンパイル時間 | 1,854 ms |
| コンパイル使用メモリ | 168,344 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-22 14:30:40 |
| 合計ジャッジ時間 | 3,475 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 3 WA * 5 |
ソースコード
#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){
bit.add(x, (y>1)-(a[x]>1));
a[x-1] = y;
}else{
int ok = x-1, ng = y;
while(ng-ok>1){
int md = (ok+ng)/2;
if(bit.sum(y)==bit.sum(md)) ng = md;
else ok = md;
}
cout << (((y-ok)&1)?"F\n":"S\n");
}
}
return 0;
}
houren