結果
問題 | No.1030 だんしんぐぱーりない |
ユーザー | Y17 |
提出日時 | 2020-04-17 23:18:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,070 bytes |
コンパイル時間 | 1,938 ms |
コンパイル使用メモリ | 179,844 KB |
実行使用メモリ | 27,148 KB |
最終ジャッジ日時 | 2024-10-03 15:19:06 |
合計ジャッジ時間 | 16,621 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
20,224 KB |
testcase_01 | AC | 17 ms
20,352 KB |
testcase_02 | AC | 18 ms
20,352 KB |
testcase_03 | AC | 17 ms
20,224 KB |
testcase_04 | AC | 17 ms
20,224 KB |
testcase_05 | AC | 379 ms
26,128 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 310 ms
26,256 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 356 ms
25,488 KB |
testcase_13 | AC | 289 ms
25,232 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 352 ms
23,568 KB |
testcase_17 | AC | 325 ms
26,256 KB |
testcase_18 | WA | - |
testcase_19 | AC | 241 ms
21,392 KB |
testcase_20 | AC | 282 ms
23,056 KB |
testcase_21 | AC | 265 ms
24,080 KB |
testcase_22 | AC | 282 ms
23,184 KB |
testcase_23 | AC | 343 ms
22,932 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 377 ms
23,824 KB |
testcase_29 | AC | 260 ms
25,616 KB |
testcase_30 | AC | 260 ms
23,180 KB |
testcase_31 | AC | 275 ms
22,932 KB |
testcase_32 | RE | - |
testcase_33 | AC | 352 ms
25,872 KB |
testcase_34 | RE | - |
testcase_35 | AC | 547 ms
27,024 KB |
testcase_36 | AC | 516 ms
26,964 KB |
testcase_37 | AC | 517 ms
27,020 KB |
testcase_38 | AC | 533 ms
27,148 KB |
testcase_39 | AC | 530 ms
27,024 KB |
testcase_40 | AC | 17 ms
20,196 KB |
testcase_41 | AC | 17 ms
20,224 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } int n, k, q; int c[100010]; int a[100010]; typedef vector<vector<int>> Tree; Tree tree(100010); template< typename G > struct DoublingLowestCommonAncestor { const int LOG; vector< int > dep; const G &g; vector< vector< int > > table; DoublingLowestCommonAncestor(const G &g) : g(g), dep(g.size()), LOG(32 - __builtin_clz(g.size())) { table.assign(LOG, vector< int >(g.size(), -1)); } void dfs(int idx, int par, int d) { table[0][idx] = par; dep[idx] = d; for(auto &to : g[idx]) { if(to != par) dfs(to, idx, d + 1); } } void build() { dfs(0, -1, 0); for(int k = 0; k + 1 < LOG; k++) { for(int i = 0; i < table[k].size(); i++) { if(table[k][i] == -1) table[k + 1][i] = -1; else table[k + 1][i] = table[k][table[k][i]]; } } } int query(int u, int v) { if(dep[u] > dep[v]) swap(u, v); for(int i = LOG - 1; i >= 0; i--) { if(((dep[v] - dep[u]) >> i) & 1) v = table[i][v]; } if(u == v) return u; for(int i = LOG - 1; i >= 0; i--) { if(table[i][u] != table[i][v]) { u = table[i][u]; v = table[i][v]; } } return table[0][u]; } }; template <class Monoid> struct SegmentTree{ using Func = function<Monoid(Monoid, Monoid)>; int size; vector<Monoid> seg; const Func merge; const Monoid def; SegmentTree(int n, Monoid d, const Func f): merge(f), def(d){ for(size = 1; size <= n; size <<= 1); seg.assign(size*2, def); } Monoid& operator[] (int i) { return seg[i+size]; }; void build(){ for(int i = size-1;i >= 0;i--) seg[i] = merge(seg[i*2], seg[i*2+1]); } void update(int i, Monoid val){ seg[i += size] = val; while(i >>= 1) seg[i] = merge(seg[i*2], seg[i*2+1]); } void add(int i, Monoid val){ update(i, val+seg[i+size]); } Monoid get(int a, int b){ Monoid l = def, r = def; for(a += size, b += size; a < b; a >>= 1, b >>= 1){ if(a & 1) l = merge(l, seg[a++]); if(b & 1) r = merge(seg[--b], r); } return merge(l, r); } }; void dfs(int idx, int par){ for(auto e : tree[idx]){ if(e != par){ chmax(c[e], c[idx]); dfs(e, idx); } } } DoublingLowestCommonAncestor<Tree> lca(tree); int m(int a, int b){ if(a == -1) return b; if(b == -1) return a; return lca.query(a, b); } signed main(){ cin >> n >> k >> q; for(int i = 0;i < n;i++){ cin >> c[i]; } for(int i = 0;i < k;i++){ cin >> a[i]; a[i]--; } for(int i = 0;i < n-1;i++){ int a, b; cin >> a >> b; a--; b--; tree[a].push_back(b); tree[b].push_back(a); } dfs(0, -1); lca.build(); SegmentTree<int> seg(n, -1, m); for(int i = 0;i < n;i++){ seg.update(i, a[i]); } for(int i = 0;i < q;i++){ int t, x, y; cin >> t >> x >> y; if(t == 1){ seg.update(x-1, y-1); }else{ cout << c[seg.get(x-1, y)] << endl; } } return 0; }