# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
89626 | 2018-12-17T16:30:44 Z | Vardanyan | Birthday gift (IZhO18_treearray) | C++14 | 65 ms | 67956 KB |
#include <bits/stdc++.h> using namespace std; const int N = 2*1000*100+5; int a[N]; vector<int> g[N]; int colour[N]; int par[N]; int dp[N][25]; int depth[N]; void kaxel(int v,int dep = 0,int p = -1){ par[v] = p; dp[v][0] = p; depth[v] = dep; for(int i = 0;i<g[v].size();i++){ int to = g[v][i]; if(to == p) continue; kaxel(to,dep+1,v); } } int lca(int a,int b){ if(depth[a]<depth[b]) swap(a,b); int dif = depth[a]-depth[b]; for(int i = 24;i>=0;i--){ if((dif>>i)&1) a = dp[a][i]; } // cout<<a<<" "<<b<<endl; if(a == b) return a; for(int i = 24;i>=0;i--){ if(dp[a][i] == -1 || dp[b][i] == -1) continue; if(dp[a][i] == dp[b][i]) continue; a = dp[a][i]; b = dp[b][i]; } a = dp[a][0]; return a; } set<int> ANS[N]; int main(){ int n,m,q; scanf("%d%d%d",&n,&m,&q); for(int i = 1;i<=n-1;i++){ int x,y; scanf("%d%d",&x,&y); g[x].push_back(y); g[y].push_back(x); } memset(dp,-1,sizeof dp); kaxel(1); for(int j = 1;j<=24;j++){ for(int i = 1;i<=n;i++){ if(dp[i][j-1] == -1) dp[i][j] = -1; else dp[i][j] = dp[dp[i][j-1]][j-1]; } } /*int x,y; while(cin>>x>>y){ cout<<lca(x,y)<<endl; }*/ /*for(int i = 1;i<=n;i++){ for(int j = 0;j<=4;j++){ cout<<dp[i][j]<<" "; } cout<<endl; }*/ for(int i = 1;i<=m;i++) scanf("%d",&a[i]); for(int i = 1;i<=m;i++){ ANS[a[i]].insert(i); if(i == m) continue; ANS[lca(a[i],a[i+1])].insert(i); } while(q--){ int tp; scanf("%d",&tp); if(tp == 1){ int pos,val; scanf("%d%d",&pos,&val); int now = a[pos]; if(ANS[a[pos]].find(pos) != ANS[a[pos]].end()) ANS[a[pos]].erase(pos); if(pos>1){ if( ANS[lca(a[pos],a[pos-1])].find(pos-1)!= ANS[lca(a[pos],a[pos-1])].end()) ANS[lca(a[pos],a[pos-1])].erase(pos-1); } if(pos<m){ if(ANS[lca(a[pos],a[pos+1])].find(pos)!=ANS[lca(a[pos],a[pos+1])].end()) ANS[lca(a[pos],a[pos+1])].erase(pos); } a[pos] = val; ANS[val].insert(pos); ANS[lca(a[pos],a[pos-1])].insert(pos-1); ANS[lca(a[pos],a[pos+1])].insert(pos); } else{ int l,r,v; scanf("%d%d%d",&l,&r,&v); set<int>::iterator it = ANS[v].lower_bound(l); if(it == ANS[v].end()){ printf("-1 -1\n"); continue; } int pos = *it; if(pos>r){ printf("-1 -1\n"); continue; } if(a[pos] == v){ printf("%d %d\n",pos,pos); continue; } printf("%d %d\n",pos,pos+1); } } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 28 ms | 34040 KB | n=5 |
2 | Runtime error | 65 ms | 67956 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 28 ms | 34040 KB | n=5 |
2 | Runtime error | 65 ms | 67956 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 28 ms | 34040 KB | n=5 |
2 | Runtime error | 65 ms | 67956 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 28 ms | 34040 KB | n=5 |
2 | Runtime error | 65 ms | 67956 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
3 | Halted | 0 ms | 0 KB | - |