結果
問題 | No.879 Range Mod 2 Query |
ユーザー | ianCK |
提出日時 | 2019-12-07 07:32:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,145 bytes |
コンパイル時間 | 511 ms |
コンパイル使用メモリ | 34,452 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-06-06 18:55:04 |
合計ジャッジ時間 | 5,459 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
13,312 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:85:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 85 | scanf("%d%d", &n, &q); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:86:43: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 86 | for (int i = 1; i <= n; i++) scanf("%d", &a[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:89:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 89 | scanf("%d%d%d", &k, &l, &r); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:92:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 92 | 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]; int odd[kN << 2], even[kN << 2]; 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 ; } void addtag(int n, ll x) { if (x == -1) { if (flag[n] > 0 && (flag[n] & 1)) push(n); flag[n] = x; tot[n] = odd[n]; } else { if (flag[n] == -1) push(n); if (x & 1) swap(odd[n], even[n]); flag[n] += x; tot[n] += (odd[n] + even[n]) * x; } return ; } void push(int n) { if (odd[n] + even[n] > 1 && flag[n] != 0) { addtag(n * 2 + 1, flag[n]); addtag(n * 2 + 2, flag[n]); } flag[n] = 0; return ; } void init(int n, int l, int r, int a[]) { flag[n] = 0; if (l == r) { tot[n] = a[l]; if (a[l] & 1) odd[n] = 1, even[n] = 0; else odd[n] = 0, even[n] = 1; } else { int mid = (l + r) >> 1; init(n * 2 + 1, l, mid, a); init(n * 2 + 2, mid + 1, r, a); pull(n); } return ; } void fix(int n, int l, int r, int L, int R, int x) { if (L <= l && r <= R) addtag(n, x); else if (!(L > r || l > R)) { int mid = (l + r) >> 1; push(n); fix(n * 2 + 1, l, mid, L, R, x); fix(n * 2 + 2, mid + 1, r, L, R, x); pull(n); } return ; } 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)); } }