結果
問題 | No.1790 Subtree Deletion |
ユーザー | shiroha_F14 |
提出日時 | 2021-12-10 19:25:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,646 bytes |
コンパイル時間 | 1,910 ms |
コンパイル使用メモリ | 181,112 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-09-15 14:05:54 |
合計ジャッジ時間 | 4,879 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 105 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 97 ms
8,064 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/lazysegtree> using namespace atcoder; using ll = long long; // Euler Tour vector<int> vis; vector<ll> edges(1, 0); vector<vector<pair<int, ll>>> g(50000); vector<int> in(50000); vector<int> out(50000); vector<int> seen(50000, false); int t = 0; void dfs(int p){ in[p] = t; t++; vis.push_back(p); seen[p] = true; for(auto v : g[p]){ if(seen[v.first]) continue; edges.push_back(v.second); dfs(v.first); vis.push_back(p); edges.push_back(0); } t++; out[p] = t; } // lazy segtree ll ID = 8000000000000000000; ll op(ll a, ll b){ return a ^ b; } ll e(){ return 0; } ll mapping(ll f, ll x){ if(f == ID){ return x; }else{ return f; } } ll composition(ll f, ll g){ if(f == ID){ return g; }else{ return f; } } ll id(){ return ID; } // main int main(){ int n; cin >> n; for(int i = 0; i < n - 1; i++){ int l, r; cin >> l >> r; ll a; cin >> a; g[l - 1].push_back({r - 1, a}); g[r - 1].push_back({l - 1, a}); } vis.reserve(n * 2); edges.reserve(n * 2); dfs(0); edges.push_back(0); int m = vis.size(); lazy_segtree<ll, op, e, ll, mapping, composition, id> seg(edges); int q; cin >> q; for(int i = 0; i < q; i++){ int t; cin >> t; int x; cin >> x; x--; if(t == 1){ // delete seg.apply(in[x], out[x], 0); }else{ // f(x) cout << seg.prod(in[x] + 1, out[x]) << endl; } } }