結果
問題 | No.230 Splarraay スプラレェーイ |
ユーザー | pekempey |
提出日時 | 2017-01-04 17:36:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,842 bytes |
コンパイル時間 | 2,713 ms |
コンパイル使用メモリ | 171,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-10 00:33:28 |
合計ジャッジ時間 | 4,117 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; struct RSQ { // RMQ (3 level decomposition) static const int S = 47; struct Tuple { int sum; int lazy = -1; }; Tuple L1[S], L2[S * S], L3[S * S * S]; void push(int k) { int b = k / S / S; if (L1[b].lazy != -1) { for (int i = b * S; i < b * S + S; i++) { L2[i].lazy = L1[b].lazy; L2[i].sum = L1[b].lazy * S * S; } L1[b].lazy = -1; } b = k / S; if (L2[b].lazy != -1) { for (int i = b * S; i < b * S + S; i++) { L3[i].sum = L2[b].lazy * S; } L2[b].lazy = -1; } } void fill(int l, int r, bool k) { push(l); push(r - 1); while (l < r && l % S != 0) L3[l++].sum = k; while (l < r && r % S != 0) L3[--r].sum = k; l /= S; r /= S; while (l < r && l % S != 0) { L2[l].sum = k * S; L2[l].lazy = k; l++; } while (l < r && r % S != 0) { r--; L2[r].sum = k * S; L2[l].lazy = k; } while (l < r) { L3[l].sum = k * S * S; L3[l].lazy = k; l++; } } int query(int l, int r) { push(l); push(r - 1); int ret = 0; while (l < r && l % S != 0) ret += L3[l++].sum; while (l < r && r % S != 0) ret += L3[--r].sum; l /= S; r /= S; while (l < r && l % S != 0) ret += L2[l++].sum; while (l < r && r % S != 0) ret += L2[--r].sum; l /= S; r /= S; while (l < r) ret += L1[l++].sum; return ret; } }; RSQ rsq[2]; int main() { int n, q; cin >> n >> q; long long scoreA = 0; long long scoreB = 0; while (q--) { int x, l, r; scanf("%d %d %d", &x, &l, &r); x--; r++; if (x == -1) { int a = rsq[0].query(l, r); int b = rsq[1].query(l, r); if (a > b) scoreA += a; if (a < b) scoreB += b; } else { rsq[x].fill(l, r, 1); rsq[x ^ 1].fill(l, r, 0); } } scoreA += rsq[0].query(0, n); scoreB += rsq[1].query(0, n); cout << scoreA << " " << scoreB << endl; }