結果
問題 | No.961 Vibrant Fillumination |
ユーザー | risujiroh |
提出日時 | 2019-12-24 01:46:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,318 bytes |
コンパイル時間 | 3,605 ms |
コンパイル使用メモリ | 192,184 KB |
実行使用メモリ | 26,240 KB |
最終ジャッジ日時 | 2024-09-19 05:57:24 |
合計ジャッジ時間 | 10,510 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; string to_string(string s) { return '"' + s + '"'; } string to_string(bool b) { return b ? "true" : "false"; } template <size_t N> string to_string(bitset<N> bs) { string res; for (size_t i = 0; i < N; ++i) res += '0' + bs[i]; return res; } string to_string(vector<bool> v) { string res = "{"; for (bool e : v) res += to_string(e) + ", "; return res += "}"; } template <class T, class U> string to_string(pair<T, U> p); template <class C> string to_string(C c) { string res = "{"; for (auto e : c) res += to_string(e) + ", "; return res += "}"; } template <class T, class U> string to_string(pair<T, U> p) { return "(" + to_string(p.first) + ", " + to_string(p.second) + ")"; } void debug() { cerr << '\n'; } template <class Head, class... Tail> void debug(Head head, Tail... tail) { cerr << ' ' << to_string(head), debug(tail...); } #ifdef LOCAL #define DEBUG(...) cerr << "[" << #__VA_ARGS__ << "]:", debug(__VA_ARGS__) #else #define DEBUG(...) #endif template <class T> struct FenwickTree { const int n; vector<T> t; FenwickTree(int _n) : n(_n), t(n + 1) {} void add(int i, T x) { for (++i; i <= n; i += i & -i) t[i] ^= x; } T sum(int i) const { T s = 0; for (; i; i -= i & -i) s ^= t[i]; return s; } }; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<long long> h(n); for (auto&& e : h) { cin >> e; } struct Event { bool add; int c, l, r; }; vector< vector<Event> > es(2 * n); for (int i = 0; i < n; ++i) { int a, b, c, d, e; cin >> a >> b >> c >> d >> e; --e; es[a].emplace_back(Event{true, e, b, d}); es[c].emplace_back(Event{false, e, b, d}); } int q; cin >> q; struct Query { int id, i; }; vector< vector<Query> > qs(2 * n); for (int i = 0; i < q; ++i) { int x, y; cin >> x >> y; qs[x].emplace_back(Query{i, y}); } vector<long long> res(q); FenwickTree<long long> ft(2 * n); vector< map<int, int> > mp(n); for (int t = 0; t < 2 * n; ++t) { for (auto e : es[t]) { if (e.add) { vector<int> v{0}; int sum = 0; for (auto p : mp[e.c]) { if (sum == 0 ^ (sum + p.second) == 0) { v.push_back(p.first); } sum += p.second; } v.push_back(2 * n); for (int i = 0; i < (int)v.size(); i += 2) { if (v[i + 1] <= e.l or e.r <= v[i]) { continue; } ft.add(max(v[i], e.l), h[e.c]); ft.add(min(v[i + 1], e.r), h[e.c]); } ++mp[e.c][e.l]; --mp[e.c][e.r]; } else { --mp[e.c][e.l]; ++mp[e.c][e.r]; vector<int> v{0}; int sum = 0; for (auto p : mp[e.c]) { if (sum == 0 ^ (sum + p.second) == 0) { v.push_back(p.first); } sum += p.second; } v.push_back(2 * n); for (int i = 0; i < (int)v.size(); i += 2) { if (v[i + 1] <= e.l or e.r <= v[i]) { continue; } ft.add(max(v[i], e.l), h[e.c]); ft.add(min(v[i + 1], e.r), h[e.c]); } } } for (auto e : qs[t]) { res[e.id] = ft.sum(e.i + 1); } } for (auto e : res) { cout << e << '\n'; } }