记录编号 333779 评测结果 AAAAAAAAAA
题目名称 [WC 2006] 水管局长 最终得分 100
用户昵称 GravatarFoolMike 是否通过 通过
代码语言 C++ 运行时间 4.017 s
提交时间 2016-10-31 14:22:57 内存使用 37.50 MiB
显示代码纯文本
  1. #include<cstdio>
  2. #include<algorithm>
  3. #include<map>
  4. using namespace std;
  5. const int N=500010;
  6. //edge chapter
  7. struct edge{int f,t,l,p,T;}w[N];
  8. bool cmp(const edge &x,const edge &y){
  9. return x.T==y.T?x.l<y.l:x.T>y.T;
  10. }
  11. int n,m,q,head[N],tail[N],next[N];
  12. void add(int i){
  13. w[i+m]=w[i];swap(w[i].f,w[i].t);
  14. int f=w[i].f,t=w[i].t;
  15. if (!head[f]) head[f]=tail[f]=i;
  16. else tail[f]=next[tail[f]]=i;
  17. if (!head[t]) head[t]=tail[t]=i+m;
  18. else tail[t]=next[tail[t]]=i+m;
  19. }
  20. //link cut tree chapter
  21. int son[N][2],fa[N],v[N],mp[N],cnt,E[N];//E[x]表示边权点对应的边标号
  22. bool root[N],rev[N];
  23. #define lc son[x][0]
  24. #define rc son[x][1]
  25. void New(int i){
  26. v[cnt]=w[i].l;root[cnt]=1;mp[cnt]=cnt;E[cnt]=i;
  27. w[i].p=w[i<=m?i+m:i-m].p=cnt;
  28. }
  29. void update(int x){
  30. mp[x]=x;
  31. if (v[mp[lc]]>v[mp[x]]) mp[x]=mp[lc];
  32. if (v[mp[rc]]>v[mp[x]]) mp[x]=mp[rc];
  33. }
  34. void pushdown(int x){
  35. if (rev[x]){
  36. swap(son[lc][0],son[lc][1]);
  37. swap(son[rc][0],son[rc][1]);
  38. rev[lc]^=1;rev[rc]^=1;
  39. rev[0]=rev[x]=0;
  40. }
  41. }
  42. void rotate(int x){
  43. int y=fa[x],z=fa[y];
  44. bool b=(x==son[y][1]);
  45. fa[son[y][b]=son[x][!b]]=y;
  46. fa[son[x][!b]=y]=x;
  47. fa[x]=z;
  48. if (y==son[z][0]) son[z][0]=x;else
  49. if (y==son[z][1]) son[z][1]=x;
  50. root[x]=root[y];root[y]=0;
  51. update(y);update(x);
  52. }
  53. void splay(int x){
  54. pushdown(x);
  55. while (!root[x]){
  56. int y=fa[x],z=fa[y];
  57. pushdown(z);pushdown(y);pushdown(x);
  58. if (root[y]){rotate(x);return;}
  59. if (x==son[y][0]) rotate(y==son[z][0]?y:x);
  60. else rotate(y==son[z][1]?y:x);
  61. rotate(x);
  62. }
  63. }
  64. void access(int x){
  65. splay(x);
  66. root[rc]=1;rc=0;
  67. update(x);
  68. while (fa[x]){
  69. int y=fa[x];
  70. splay(y);
  71. root[son[y][1]]=1;
  72. root[son[y][1]=x]=0;
  73. update(y);
  74. splay(x);
  75. }
  76. }
  77. void make_root(int x){
  78. access(x);
  79. rev[x]^=1;
  80. swap(lc,rc);
  81. }
  82. void cut(int x,int y){
  83. make_root(y);access(x);
  84. root[y]=1;lc=fa[y]=0;
  85. update(x);
  86. }
  87. void link(int x,int y,int i){
  88. make_root(x);
  89. fa[fa[x]=++cnt]=y;
  90. New(i);
  91. }
  92. //init chapter
  93. map<pair<int,int>,int> M;
  94. int f[N];int find(int x){return f[x]==x?x:f[x]=find(f[x]);}
  95. void dfs(int x){
  96. for (int i=head[x];i;i=next[i])
  97. if (!fa[w[i].t]){
  98. fa[fa[w[i].t]=++cnt]=x;
  99. New(i);dfs(w[i].t);
  100. }
  101. }
  102. struct ask{int k,x,y,ans;}Q[N];
  103. int main()
  104. {
  105. freopen("tube.in","r",stdin);
  106. freopen("tube.out","w",stdout);
  107. scanf("%d%d%d",&n,&m,&q);
  108. for (int i=1;i<=m;i++){
  109. scanf("%d%d%d",&w[i].f,&w[i].t,&w[i].l);
  110. w[i].T=q+1;
  111. M[make_pair(w[i].f,w[i].t)]=M[make_pair(w[i].t,w[i].f)]=i;
  112. }
  113. for (int i=1;i<=q;i++){
  114. scanf("%d%d%d",&Q[i].k,&Q[i].x,&Q[i].y);
  115. if (Q[i].k==2) w[M[make_pair(Q[i].x,Q[i].y)]].T=i;
  116. }
  117. //init
  118. sort(w+1,w+m+1,cmp);
  119. for (int i=1;i<=n;i++) root[i]=1,mp[i]=f[i]=i;
  120. for (int i=1;i<=m;i++)
  121. if (w[i].T==q+1){
  122. int a=find(w[i].f),b=find(w[i].t);
  123. if (a!=b){f[a]=b;add(i);}
  124. }
  125. cnt=n;fa[1]=1;dfs(1);fa[1]=0;
  126. //solve
  127. int pos=1;while (w[pos].T==q+1) pos++;
  128. for (int i=q;i;i--){
  129. int x=Q[i].x,y=Q[i].y;
  130. make_root(x);
  131. access(y);
  132. if (Q[i].k==1) Q[i].ans=v[mp[y]];
  133. else{
  134. if (v[mp[y]]>=w[pos].l){
  135. int e=E[mp[y]];
  136. cut(w[e].f,w[e].p);
  137. cut(w[e].t,w[e].p);
  138. link(x,y,pos);
  139. }
  140. pos++;
  141. }
  142. }
  143. for (int i=1;i<=q;i++)
  144. if (Q[i].k==1) printf("%d\n",Q[i].ans);
  145. return 0;
  146. }