BZOJ3732 Network

news/2024/12/12 21:28:34

这貌似是13年的noip最后一道吧?、、、

蒟蒻只会这种题呢、、、

Kruskal求出MST,然后倍增就好了

 

  1 /**************************************************************
  2     Problem: 3732
  3     User: rausen
  4     Language: C++
  5     Result: Accepted
  6     Time:268 ms
  7     Memory:4412 kb
  8 ****************************************************************/
  9  
 10 #include <cstdio>
 11 #include <algorithm>
 12  
 13 using namespace std;
 14 const int N = 16005;
 15 const int M = 30005;
 16  
 17 struct Edge {
 18     int x, y, v;
 19      
 20     inline bool operator < (const Edge &x) const {
 21         return v < x.v;
 22     }
 23 } E[M];
 24  
 25 struct edge {
 26     int next, to, v;
 27     edge() {}
 28     edge(int _n, int _t, int _v) : next(_n), to(_t), v(_v) {}
 29 } e[M];
 30  
 31 struct tree_node {
 32     int fa[16], mx[16], dep;
 33 } tr[N];
 34  
 35 int n, m;
 36 int fa[N];
 37 int tot, first[N];
 38  
 39 inline int read() {
 40     int x = 0;
 41     char ch = getchar();
 42     while (ch < '0' || '9' < ch)
 43         ch = getchar();
 44     while ('0' <= ch && ch <= '9') {
 45         x = x * 10 + ch - '0';
 46         ch = getchar();
 47     }
 48     return x;
 49 }
 50  
 51 inline void Add_Edges(int x, int y, int v) {
 52     e[++tot] = edge(first[x], y, v), first[x] = tot;
 53     e[++tot] = edge(first[y], x, v), first[y] = tot;
 54 }
 55  
 56 int find_fa(int x) {
 57     return x == fa[x] ? x : fa[x] = find_fa(fa[x]);
 58 }
 59  
 60 void Kruskal() {
 61     int i, cnt, fa1, fa2;
 62     sort(E + 1, E + m + 1);
 63     for (i = 1; i <= n; ++i)
 64         fa[i] = i;
 65     for (i = 1, cnt = 0; i <= m; ++i) {
 66         fa1 = find_fa(E[i].x), fa2 = find_fa(E[i].y);
 67         if (fa1 != fa2) {
 68             fa[fa1] = fa2, ++cnt;
 69             Add_Edges(E[i].x, E[i].y, E[i].v);
 70             if (cnt == n - 1) break;
 71         }
 72     }
 73 }
 74  
 75 void dfs(int p) {
 76     int x, y;
 77     for (x = 1; x < 16; ++x) {
 78         tr[p].fa[x] = tr[tr[p].fa[x - 1]].fa[x - 1];
 79         tr[p].mx[x] = max(tr[p].mx[x - 1], tr[tr[p].fa[x - 1]].mx[x - 1]);
 80     }
 81     for (x = first[p]; x; x = e[x].next)
 82         if ((y = e[x].to) != tr[p].fa[0]) {
 83             tr[y].dep = tr[p].dep + 1;
 84             tr[y].fa[0] = p, tr[y].mx[0] = e[x].v;
 85             dfs(y);
 86         }
 87 }
 88  
 89 int query(int x, int y) {
 90     int res = 0, i;
 91     if (tr[x].dep < tr[y].dep) swap(x, y);
 92     for (i = 15; ~i; --i)
 93         if (tr[tr[x].fa[i]].dep >= tr[y].dep) {
 94             res = max(res, tr[x].mx[i]);
 95             x = tr[x].fa[i];
 96         }
 97     for (i = 15; ~i; --i)
 98         if (tr[x].fa[i] != tr[y].fa[i]) {
 99             res = max(res, max(tr[x].mx[i], tr[y].mx[i]));
100             x = tr[x].fa[i], y = tr[y].fa[i];
101         }
102     if (x != y)
103         res = max(res, max(tr[x].mx[0], tr[y].mx[0]));
104     return res;
105 }
106  
107 int main() {
108     n = read(), m = read();
109     int Q = read(), i, x, y;
110     for (i = 1; i <= m; ++i)
111         E[i].x = read(), E[i].y = read(), E[i].v = read();
112     Kruskal();
113     tr[1].dep = 1;
114     dfs(1);
115     while (Q--) {
116         x = read(), y = read();
117         printf("%d\n", query(x, y));
118     }
119     return 0;
120 }
View Code

 

转载于:https://www.cnblogs.com/rausen/p/4160979.html


https://dhexx.cn/news/show-16979.html

相关文章

CodeForces 425E Sereja and Sets

意甲冠军&#xff1a; 集S它包括了很多间隔[l,r] 和1<l<r<n f(S)个不相交的区间 问给出n和f(S) 有几种可能的S集合 思路&#xff1a; dp好题 至于为啥是dp… 我仅仅能说是胖子大神教我的 - -b 定义 dp[i][j] 表示当ni且f(S)j时的S集合种类数 那么它能够通过dp[…

java lfu cache_LeetCode 460. LFU Cache LFU缓存 (C++/Java)

题目&#xff1a;Design and implement a data structure for Least Frequently Used (LFU)cache. It should support the following operations: get and put.get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise retu…

三张图片解析ASP.net的整个生命周期

http://dato0123.iteye.com/blog/1264048转载于:https://www.cnblogs.com/zengkefu/p/4805025.html

视频左下角java_java提取编辑器中视频地址,处理腾讯视频和优酷视频

/**** Title: replacePreTag* Description: 将自定义视频标签替换成void的* author 凯哥Java* param editContentStr* return* return Map* throws*/private Map replacePreTag(String editContentStr) {Map map new HashMap();StringBuffer sbUrl new StringBuffer();String…

软件工程的实践项目的自我目标

软件工程山高路远&#xff0c;没有什么基础的我注定要走得步履蹒跚。但想到这就是自己要有的技能&#xff0c;所以必须走过去。 能力预期&#xff1a; 1.能较好的掌握Java&#xff0c;能独立编写简单的应用软件。 2.学会合作。 3.总而言之&#xff0c;是要具备一定的软件工程素…

activity 变成后台进程后被杀死_App在后台被杀死后重启-重进首页方法

感谢这位哥的思路。这个问题很常见&#xff0c;基本所有app都会遇到这个问题。但是很多开发者都没有处理。问题的起因&#xff1a;我的app在进入后台后一段时间&#xff0c;可能被系统干掉了&#xff0c;然后通过多任务键&#xff0c;或者图标再点进去操作&#xff0c;出现xxId…

Kali Linux Web 渗透测试视频教程— 第十六课-拒绝服务攻击

Kali Linux Web 渗透测试视频教程—第十六课-拒绝服务攻击 文/玄魂 目录 Kali Linux Web 渗透测试视频教程— 第十六课-拒绝服务攻击...................... 1 DoS.........................................................................................................…

ssh 怎么通过跳板机传文件到内网_SSH 命令的三种代理功能(-L/-R/-D)

ssh 命令除了登陆外还有三种代理功能&#xff1a;正向代理&#xff08;-L&#xff09;&#xff1a;相当于 iptable 的 port forwarding反向代理&#xff08;-R&#xff09;&#xff1a;相当于 frp 或者 ngroksocks5 代理&#xff08;-D&#xff09;&#xff1a;相当于 ss/ssr如…

实用Linux命令,不求最全但求实用-------磁盘使用情况du,df

命令&#xff1a; df -h 输出实例&#xff1a; 文件系统 容量 已用 可用 已用% 挂载点 /dev/md0 9.7G 4.7G 4.6G 51% //dev/sda5 9.7G 45M 9.1G 1% /boot/dev/sda8 9.9G 43M 9.3G 1% /homenone …

java struts json_Struts2 - JSON

Struts2中使用JSON做数据的get/post&#xff0c;方法有很多种&#xff0c;这里有一篇文章比较详细的列举出了JSON在Struts和Servlet中如何GET:Servlet的不写了&#xff0c;也就是how to use HttpRequest和HttpResponse。主要是在Struts2身上。以文章所描述的方法似乎总是差了那…