結果
問題 | No.1030 だんしんぐぱーりない |
ユーザー | ngtkana |
提出日時 | 2020-04-18 00:27:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,454 bytes |
コンパイル時間 | 2,644 ms |
コンパイル使用メモリ | 217,676 KB |
実行使用メモリ | 28,052 KB |
最終ジャッジ日時 | 2024-10-03 16:29:24 |
合計ジャッジ時間 | 15,919 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | RE | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | WA | - |
ソースコード
#include<bits/stdc++.h> #define ALL(v) std::begin(v),std::end(v) using lint=long long; using ld=long double; template<class T>using numr=std::numeric_limits<T>; void cmn(lint&x,lint y){if(x>y)x=y;} void cmx(lint&x,lint y){if(x<y)x=y;} template<class Value,class BinaryOp>struct segtree{ // {{{ // member variables lint n,N; BinaryOp op; Value id; std::vector<Value>table; // constructors segtree()=default; segtree(lint n_, BinaryOp const& op_, Value id_): n(n_), N(1ll<<(std::numeric_limits<lint>::digits-__builtin_clzll(n)+1)), op(op_), id(id_), table(2*N,id){} // other member functions void update(lint i){table.at(i)=op(table.at(2*i),table.at(2*i+1));} void set(lint i, Value const& x){i+=N;table.at(i)=x;for(i>>=1;i;i>>=1)update(i);} void lazy_set(lint i, Value const& x){table.at(i+N)=x;} void build(){for(lint i=N-1;i;i--)update(i);} Value get(lint i)const{return table.at(i+N);} Value query(lint l, lint r)const{ Value ans=id; std::vector<lint>right; for(l+=N,r+=N;l<r;l>>=1,r>>=1){ if(l&1)ans=op(ans,table.at(l++)); if(r&1)right.push_back(--r); } std::reverse(ALL(right)); for(lint x:right)ans=op(ans,table.at(x)); return ans; } std::vector<Value>to_vec()const{ std::vector<Value>ans(n); for(lint i=0;i<n;i++)ans.at(i)=table.at(N+i); return ans; } }; // }}} auto min_fn=[](auto&&x,auto&&y){return std::min(x,y);}; int main(){ std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false); std::cout.setf(std::ios_base::fixed);std::cout.precision(15); lint n,k,q;std::cin>>n>>k>>q; std::vector<lint>c(n),a(k); for(lint&x:c)std::cin>>x; for(lint&x:a){std::cin>>x;x--;} std::vector<std::vector<lint>>g(n); for(lint i=0;i<n-1;i++){ lint u,v;std::cin>>u>>v;u--,v--; g.at(v).push_back(u); } lint N=4*n-2; auto eular=segtree(N,min_fn,std::pair(n,0)); std::vector<std::pair<lint,lint>>pos(n); lint eular_sz=0; auto dfs=[&](auto&&f,lint x,lint d)->void{ pos.at(x).first=eular_sz; eular.set(eular_sz++,std::pair(d,x)); for(lint y:g.at(x)){ eular.set(eular_sz++,std::pair(d,x)); cmx(c.at(y),c.at(x)); f(f,y,d+1); eular.set(eular_sz++,std::pair(d,x)); } pos.at(x).second=eular_sz; eular.set(eular_sz++,std::pair(d,x)); }; dfs(dfs,0,0); auto lca=segtree(n,[&](lint x,lint y){return x==-1?y:y==-1?x:eular.query(pos.at(x).first,pos.at(y).second).second;},-1); for(lint i=0;i<k;i++)lca.lazy_set(i,a.at(i)); lca.build(); for(lint i=0;i<q;i++){ lint com;std::cin>>com; if(com==1){ lint x,y;std::cin>>x>>y;x--,y--; lca.set(x,y); } if(com==2){ lint l,r;std::cin>>l>>r;l--; std::cout<<lca.query(l,r)+1<<'\n'; } } } /* * 各頂点から根までのパスの最大値を DFS で前計算です。 * あとは LCA をオイラーツアーで求めます。 * クエリ平方分割です。 * クエリ区間で変わらないようなもの全てについて、 * オイラーツアー順を min / max セグ木に入れます。 * すると、取得クエリはクエリ区間でのセグ木の結果に、追加のものも union すればよいです。 */