結果
問題 | No.879 Range Mod 2 Query |
ユーザー | ianCK |
提出日時 | 2019-12-07 07:54:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,446 bytes |
コンパイル時間 | 534 ms |
コンパイル使用メモリ | 29,312 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-06-06 19:26:05 |
合計ジャッジ時間 | 3,720 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 112 ms
8,448 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 118 ms
9,344 KB |
testcase_20 | AC | 110 ms
9,472 KB |
testcase_21 | AC | 137 ms
9,216 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:99:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 99 | scanf("%d%d", &n, &q); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:100:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 100 | for (int i = 1; i <= n; i++) scanf("%d", &a[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:103:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 103 | scanf("%d%d%d", &k, &l, &r); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:106:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 106 | scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
#include <stdio.h> typedef long long int ll; constexpr int kN = int(1E5 + 10); void swap(int &a, int &b) { int temp = a; a = b; b = temp; return ; } struct seg_tree { ll tot[kN << 2], flag[kN << 2]; bool Mod[kN << 2]; int odd[kN << 2], even[kN << 2], sz[kN << 2]; inline void pull(int n) { tot[n] = tot[n * 2 + 1] + tot[n * 2 + 2]; odd[n] = odd[n * 2 + 1] + odd[n * 2 + 2]; even[n] = even[n * 2 + 1] + even[n * 2 + 2]; return ; } inline void addtag(int n, ll x) { if (x & 1) swap(odd[n], even[n]); flag[n] += x; tot[n] += sz[n] * x; return ; } inline void change(int n) { tot[n] = odd[n]; if (flag[n]) { addtag(n * 2 + 1, flag[n]); addtag(n * 2 + 2, flag[n]); flag[n] = 0; } Mod[n] = true; return ; } inline void push(int n) { if (Mod[n]) { change(n * 2 + 1); change(n * 2 + 2); Mod[n] = false; } if (flag[n]) { addtag(n * 2 + 1, flag[n]); addtag(n * 2 + 2, flag[n]); flag[n] = 0; } return ; } inline void init(int n, int l, int r, int a[]) { flag[n] = 0; Mod[n] = false; if (l == r) { tot[n] = a[l]; if (a[l] & 1) odd[n] = 1, even[n] = 0; else odd[n] = 0, even[n] = 1; sz[n] = 1; } else { int mid = (l + r) >> 1; init(n * 2 + 1, l, mid, a); init(n * 2 + 2, mid + 1, r, a); sz[n] = sz[n * 2 + 1] + sz[n * 2 + 2]; pull(n); } return ; } inline void fix(int n, int l, int r, int L, int R, int x) { if (L <= l && r <= R) { if (x == -1) change(n); else addtag(n, x); } else if (!(L > r || l > R)) { int mid = (l + r) >> 1; push(n); if (L <= mid) fix(n * 2 + 1, l, mid, L, R, x); if (R > mid) fix(n * 2 + 2, mid + 1, r, L, R, x); pull(n); } return ; } inline ll ask(int n, int l, int r, int L, int R) { if (L <= l && r <= R) return tot[n]; else if (l > R || L > r) return 0; else { int mid = (l + r) >> 1; push(n); return ask(n * 2 + 1, l, mid, L, R) + ask(n * 2 + 2, mid + 1, r, L, R); } } }; seg_tree sg; int a[kN]; int main() { int n, q, k, l, r, x; scanf("%d%d", &n, &q); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); sg.init(0, 1, n, a); while (q--) { scanf("%d%d%d", &k, &l, &r); if (k == 1) sg.fix(0, 1, n, l, r, -1); else if (k == 2) { scanf("%d", &x); sg.fix(0, 1, n, l, r, x); } else printf("%lld\n", sg.ask(0, 1, n, l, r)); } }