Submission #89637

#TimeUsernameProblemLanguageResultExecution timeMemory
89637VardanyanBirthday gift (IZhO18_treearray)C++14
100 / 100
1693 ms99800 KiB
#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][20]; 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); if(a == b) return a; int dif = depth[a]-depth[b]; for(int i = 19;i>=0;i--){ if((dif>>i)&1) a = dp[a][i]; } // cout<<a<<" "<<b<<endl; if(a == b) return a; for(int i = 19;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]; } if(a == b) return a; a = dp[a][0]; return a; } set<int> ANS[N]; set<int> A[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<=19;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++){ A[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]; A[a[pos]].erase(pos); if(pos>1){ ANS[lca(a[pos],a[pos-1])].erase(pos-1); } if(pos<m){ ANS[lca(a[pos],a[pos+1])].erase(pos); } a[pos] = val; A[val].insert(pos); if(pos-1>0) ANS[lca(a[pos],a[pos-1])].insert(pos-1); if(pos+1<=m) ANS[lca(a[pos],a[pos+1])].insert(pos); } else{ int l,r,v; scanf("%d%d%d",&l,&r,&v); multiset<int>::iterator it = ANS[v].lower_bound(l); multiset<int>::iterator it1 = A[v].lower_bound(l); if(it1!=A[v].end()){ int pos = *it1; if(pos<=r){ printf("%d %d\n",pos,pos); continue; } } if(it == ANS[v].end()){ printf("-1 -1\n"); continue; } int pos = *it; if(pos>=r){ printf("-1 -1\n"); continue; } printf("%d %d\n",pos,pos+1); } } return 0; }

Compilation message (stderr)

treearray.cpp: In function 'void kaxel(int, int, int)':
treearray.cpp:14:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i = 0;i<g[v].size();i++){
                   ~^~~~~~~~~~~~
treearray.cpp: In function 'int main()':
treearray.cpp:81:17: warning: unused variable 'now' [-Wunused-variable]
             int now = a[pos];
                 ^~~
treearray.cpp:43:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d%d",&n,&m,&q);
     ~~~~~^~~~~~~~~~~~~~~~~~~
treearray.cpp:46:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d",&x,&y);
         ~~~~~^~~~~~~~~~~~~~
treearray.cpp:69:34: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for(int i = 1;i<=m;i++) scanf("%d",&a[i]);
                             ~~~~~^~~~~~~~~~~~
treearray.cpp:77:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d",&tp);
         ~~~~~^~~~~~~~~~
treearray.cpp:80:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
             scanf("%d%d",&pos,&val);
             ~~~~~^~~~~~~~~~~~~~~~~~
treearray.cpp:96:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
             scanf("%d%d%d",&l,&r,&v);
             ~~~~~^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...