結果
問題 | No.2879 Range Flip Queries |
ユーザー | anago-pie |
提出日時 | 2024-09-19 23:23:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 706 ms / 2,000 ms |
コード長 | 3,126 bytes |
コンパイル時間 | 2,843 ms |
コンパイル使用メモリ | 212,628 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-09-19 23:23:29 |
合計ジャッジ時間 | 21,413 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 143 ms
5,376 KB |
testcase_04 | AC | 140 ms
5,376 KB |
testcase_05 | AC | 153 ms
5,376 KB |
testcase_06 | AC | 153 ms
5,376 KB |
testcase_07 | AC | 148 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 518 ms
7,296 KB |
testcase_14 | AC | 619 ms
7,280 KB |
testcase_15 | AC | 391 ms
5,376 KB |
testcase_16 | AC | 154 ms
5,376 KB |
testcase_17 | AC | 408 ms
7,296 KB |
testcase_18 | AC | 661 ms
7,296 KB |
testcase_19 | AC | 706 ms
7,424 KB |
testcase_20 | AC | 647 ms
7,424 KB |
testcase_21 | AC | 669 ms
7,252 KB |
testcase_22 | AC | 691 ms
7,296 KB |
testcase_23 | AC | 660 ms
7,296 KB |
testcase_24 | AC | 693 ms
7,296 KB |
testcase_25 | AC | 668 ms
7,272 KB |
testcase_26 | AC | 679 ms
7,296 KB |
testcase_27 | AC | 662 ms
7,296 KB |
testcase_28 | AC | 642 ms
7,252 KB |
testcase_29 | AC | 418 ms
7,256 KB |
testcase_30 | AC | 416 ms
7,296 KB |
testcase_31 | AC | 433 ms
7,296 KB |
testcase_32 | AC | 443 ms
7,424 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i=0; i<n; i++) #define debug 0 #define YES cout << "Yes" << endl; #define NO cout << "No" << endl; using ll = long long; using ld = long double; const int mod = 998244353; const int MOD = 1000000007; const double pi = atan2(0, -1); const int inf = 1 << 31-1; const ll INF = 1LL << 63 - 1; #include <time.h> #include <chrono> //vectorの中身を空白区切りで出力 template<typename T> void printv(vector<T> v) { for (int i = 0; i < v.size(); i++) { cout << v[i]; if (i < v.size() - 1) { cout << " "; } } cout << endl; } //vectorの中身を改行区切りで出力 template<typename T> void print1(vector<T> v) { for (auto x : v) { cout << x << endl; } } //二次元配列を出力 template<typename T> void printvv(vector<vector<T>> vv) { for (vector<T> v : vv) { printv(v); } } //vectorを降順にソート template<typename T> void rsort(vector<T>& v) { sort(v.begin(), v.end()); reverse(v.begin(), v.end()); } //昇順priority_queueを召喚 template<typename T> struct rpriority_queue { priority_queue<T, vector<T>, greater<T>> pq; void push(T x) { pq.push(x); } void pop() { pq.pop(); } T top() { return pq.top(); } size_t size() { return pq.size(); } bool empty() { return pq.empty(); } }; //mod mod下で逆元を算出する //高速a^n計算(mod ver.) ll power(ll a, ll n) { if (n == 0) { return 1; } else if (n % 2 == 0) { ll x = power(a, n / 2); x *= x; x %= mod; return x; } else { ll x = power(a, n - 1); x *= a; x %= mod; return x; } } //フェルマーの小定理を利用 ll modinv(ll p) { return power(p, mod - 2) % mod; } //Mexを求める struct Mex { map<int, int> mp; set<int> s; Mex(int Max) { for (int i = 0; i <= Max; i++) { s.insert(i); } } int _mex = 0; void Input(int x) { mp[x]++; s.erase(x); if (_mex == x) { _mex = *begin(s); } } void Remove(int x) { if (mp[x] == 0) { cout << "Mex ERROR!: NO VALUE WILL BE REMOVED" << endl; } mp[x]--; if (mp[x] == 0) { s.insert(x); if (*begin(s) == x) { _mex = x; } } } int mex(){ return _mex; } }; struct SegTree { int n = 1; vector<int> tree; SegTree(int N) { while (n < N) { n *= 2; } vector<int> v(n*2, 0); swap(tree, v); } void Add(int l, int r, int u, int t, int now) { if (r <= u || l >= t) { return; } else if (l <= u && r >= t) { tree[now]++; } else { Add(l, r, u, (u + t) / 2, now * 2 + 1); Add(l, r, (u + t) / 2, t, now * 2 + 2); } } int Calc(int now) { if (now == 0) { return tree[0]; } else { int p = Calc((now - 1) / 2); return p + tree[now]; } } void Query(int l, int r) { Add(l, r + 1, 0, n, 0); } int Ans(int i) { return Calc(n - 1 + i); } void Set(int i, int k) { tree[n - 1 + i] = k; } }; int main() { int N, Q; cin >> N >> Q; SegTree st(N); rep(i, N) { int a; cin >> a; st.Set(i, a); } rep(q, Q) { int l, r; cin >> l >> r; l--; r--; st.Query(l, r); } rep(i, N) { cout << st.Ans(i) % 2 << " "; } cout << endl; }