結果
問題 | No.1641 Tree Xor Query |
ユーザー | 夜 |
提出日時 | 2021-08-10 21:45:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 309 ms / 5,000 ms |
コード長 | 1,583 bytes |
コンパイル時間 | 1,163 ms |
コンパイル使用メモリ | 103,256 KB |
実行使用メモリ | 14,660 KB |
最終ジャッジ日時 | 2024-09-22 23:25:48 |
合計ジャッジ時間 | 3,021 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
9,476 KB |
testcase_01 | AC | 6 ms
9,676 KB |
testcase_02 | AC | 6 ms
9,520 KB |
testcase_03 | AC | 6 ms
9,440 KB |
testcase_04 | AC | 5 ms
9,492 KB |
testcase_05 | AC | 6 ms
9,476 KB |
testcase_06 | AC | 6 ms
9,516 KB |
testcase_07 | AC | 6 ms
9,648 KB |
testcase_08 | AC | 6 ms
9,448 KB |
testcase_09 | AC | 6 ms
9,512 KB |
testcase_10 | AC | 6 ms
9,444 KB |
testcase_11 | AC | 6 ms
9,608 KB |
testcase_12 | AC | 6 ms
9,444 KB |
testcase_13 | AC | 308 ms
14,632 KB |
testcase_14 | AC | 309 ms
14,660 KB |
testcase_15 | AC | 10 ms
9,708 KB |
testcase_16 | AC | 22 ms
10,080 KB |
testcase_17 | AC | 17 ms
9,720 KB |
testcase_18 | AC | 14 ms
9,944 KB |
testcase_19 | AC | 12 ms
9,600 KB |
testcase_20 | AC | 214 ms
14,412 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; int n, q; vector<vector<int>> vec(100010); int mem[100010] = {}; bool bo[100010] = { false }; int c[100010], in[100010], out[100010], d[200020]; vector<long long> BIT(500050); void add(long long i, long long x) { while (i <= 2 * n) { BIT[i] ^= x; i += i & -i; } } long long csum(long long i) { long long count = 0; while (i > 0) { count ^= BIT[i]; i -= i & -i; } return count; } long long sum(long long l, long long r) { return csum(r) ^ csum(l - 1); } int main() { cin >> n >> q; for (int i = 1; i <= n; i++) { cin >> c[i]; } for (int i = 0; i < n - 1; i++) { int a, b; cin >> a >> b; vec[a].emplace_back(b); vec[b].emplace_back(a); } stack<int> st; st.push(1); in[1] = 1; add(1, c[1]); bo[1] = true; int co = 2; while (!st.empty()) { int now = st.top(); bool bo1 = false; for (int i = mem[now]; i < vec[now].size(); i++) { if (!bo[vec[now][i]]) { mem[now] = i + 1; bo[vec[now][i]] = true; bo1 = true; st.push(vec[now][i]); add(co, c[vec[now][i]]); in[vec[now][i]] = co; co++; break; } } if (!bo1) { out[now] = co; co++; st.pop(); } } for (int i = 0; i < q; i++) { int t, x, y; cin >> t >> x >> y; if (t == 1) { add(in[x], y); } else { cout << sum(in[x], out[x]) << endl; } } }