日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【HDU - 1102】Constructing Roads (最小生成树裸题模板)

發(fā)布時間:2023/12/10 编程问答 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【HDU - 1102】Constructing Roads (最小生成树裸题模板) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題干:

There are N villages, which are numbered from 1 to N, and you should build some roads such that every two villages can connect to each other. We say two village A and B are connected, if and only if there is a road between A and B, or there exists a village C such that there is a road between A and C, and C and B are connected.?

We know that there are already some roads between some villages and your job is the build some roads such that all the villages are connect and the length of all the roads built is minimum.?

Input

The first line is an integer N (3 <= N <= 100), which is the number of villages. Then come N lines, the i-th of which contains N integers, and the j-th of these N integers is the distance (the distance should be an integer within [1, 1000]) between village i and village j.?

Then there is an integer Q (0 <= Q <= N * (N + 1) / 2). Then come Q lines, each line contains two integers a and b (1 <= a < b <= N), which means the road between village a and village b has been built.?

Output

You should output a line contains an integer, which is the length of all the roads to be built such that all the villages are connected, and this value is minimum.?

Sample Input

3 0 990 692 990 0 179 692 179 0 1 1 2

Sample Output

179

題目大意:

? 大概意思就是給你一個圖,然后告訴你每兩個點之間的距離,然后給你一個q,下面q行,每行兩個數代表這兩個點是連通的,問你為了讓整個圖是個連通圖,最短還需要修多長的路。

解題報告:

? 最小生成樹裸題,,復習一下,,不解釋了、、最后就是,加不加那個cnt計數對這道題都無所謂,因為數據量太小了,都是31ms。下面兩個代碼都貼上。

AC代碼:(加cnt計數)

#include<cstdio> #include<iostream> #include<algorithm> #include<queue> #include<map> #include<vector> #include<set> #include<string> #include<cmath> #include<cstring> #define ll long long #define pb push_back #define pm make_pair #define fi first #define se second using namespace std; const int MAX = 2e5 + 5; int n,tot; int f[205]; struct Edge {int u,v;int w;Edge(){}Edge(int u,int v,int w):u(u),v(v),w(w){} } e[MAX<<1]; bool cmp(Edge a,Edge b) {return a.w < b.w; } int getf(int v) {return f[v] == v ? v : f[v] = getf(f[v]); } void merge(int u,int v) {int t1 = getf(u);int t2 = getf(v);if(t1!=t2) f[t2]=t1; } int main() {while(~scanf("%d",&n)) {tot=0;for(int i = 1; i<=n; i++) f[i] = i;for(int i = 1,w; i<=n; i++) {for(int j = 1; j<=n; j++) {scanf("%d",&w);if(i==j) continue;e[++tot] = Edge(i,j,w);e[++tot] = Edge(j,i,w);}} int q,cnt = 0;scanf("%d",&q);while(q--) {int u,v;scanf("%d%d",&u,&v);if(getf(u)!=getf(v)) merge(u,v),cnt++;}sort(e+1,e+tot+1,cmp);ll ans = 0;for(int i = 1; i<=tot; i++) {int u = e[i].u,v = e[i].v;if(getf(u) == getf(v)) continue;merge(u,v);cnt++;ans += 1LL * e[i].w;if(cnt == n-1) break;}printf("%lld\n",ans);}return 0 ;}

AC代碼2:(不加cnt計數)

//不帶cnt計數 版本 #include<cstdio> #include<iostream> #include<algorithm> #include<queue> #include<map> #include<vector> #include<set> #include<string> #include<cmath> #include<cstring> #define ll long long #define pb push_back #define pm make_pair #define fi first #define se second using namespace std; const int MAX = 2e5 + 5; int n,tot; int f[205]; struct Edge {int u,v;int w;Edge(){}Edge(int u,int v,int w):u(u),v(v),w(w){} } e[MAX<<1]; bool cmp(Edge a,Edge b) {return a.w < b.w; } int getf(int v) {return f[v] == v ? v : f[v] = getf(f[v]); } void merge(int u,int v) {int t1 = getf(u);int t2 = getf(v);if(t1!=t2) f[t2]=t1; } int main() {while(~scanf("%d",&n)) {tot=0;for(int i = 1; i<=n; i++) f[i] = i;for(int i = 1,w; i<=n; i++) {for(int j = 1; j<=n; j++) {scanf("%d",&w);if(i==j) continue;e[++tot] = Edge(i,j,w);e[++tot] = Edge(j,i,w);}} int q;scanf("%d",&q);while(q--) {int u,v;scanf("%d%d",&u,&v);merge(u,v);}sort(e+1,e+tot+1,cmp);ll ans = 0;for(int i = 1; i<=tot; i++) {int u = e[i].u,v = e[i].v;if(getf(u) == getf(v)) continue;merge(u,v);ans += 1LL * e[i].w;}printf("%lld\n",ans);}return 0 ;}

?

總結

以上是生活随笔為你收集整理的【HDU - 1102】Constructing Roads (最小生成树裸题模板)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

主站蜘蛛池模板: 麻豆精品视频 | a√天堂资源 | 羞羞涩涩网站 | 亚洲av无码日韩精品影片 | 女教师痴汉调教hd中字 | 久久这里只有 | 日韩中文字幕免费在线观看 | 97av在线视频 | 天堂在线中文网 | 国产免费一区二区三区在线播放 | 日本二三区 | 美女网站在线免费观看 | 深夜福利av | 天堂av免费看 | 91久久综合精品国产丝袜蜜芽 | 在线观看的av | 男插女av| 超碰999| 久操青青 | 黑人一区二区三区 | 黄色一级网站 | 日本一区视频在线观看 | 91九色在线播放 | 亚洲无线观看 | 优优色影院 | 91成人福利在线 | 美女色诱男人激情视频 | xxxx视频在线观看 | 国产地址| 波多av | 欧美日韩成人在线播放 | 成熟的女同志hd | 成人av社区| 蜜臀久久99精品久久久久久宅男 | 久久久久久九九 | 91精品国产99久久久久久红楼 | 成年人一级片 | 光溜溜视频素材大全美女 | 国产精品一区二区欧美 | 中文字幕在线观看视频www | 男人插入女人阴道视频 | 级毛片| www,xxx69 japan | 免费三级在线 | 国产盗摄精品 | 亚洲va欧美va天堂v国产综合 | a级片免费看| 中国大陆一级毛片 | 日韩欧美偷拍 | 欧美色图一区 | 91漂亮少妇露脸在线播放 | 国产蜜臀在线 | 2019亚洲天堂 | 久久亚洲国产 | wwwav网站 | 亚洲免费在线观看视频 | 亚洲日本香蕉视频 | 国产精品视频一二区 | 疯狂少妇| 日韩乱码一区二区 | 午夜色片| 二级毛片 | 91成人在线免费观看 | 热久久在线 | 热热色原网址 | 欧美一级日韩一级 | 日韩精品――色哟哟 | 一区二区三区日韩电影 | 一区二视频| 色一情一伦一子一伦一区 | 亚洲国产电影在线观看 | 久久aⅴ乱码一区二区三区 亚洲成人18 | 性五月天 | 日韩中文字幕2019 | 狠狠激情 | 国产精品毛片久久 | 无码人妻精品一区二区三区不卡 | 99riav国产精品视频 | 人妻在卧室被老板疯狂进入 | 国产成人av免费观看 | 秋霞自拍| 四虎综合 | 日本精品视频一区二区 | 亚洲网站在线看 | 免费黄色一区二区 | 91精东传媒理伦片在线观看 | 红桃视频成人在线 | 男人喷出精子视频 | 懂色中文一区二区在线播放 | 日韩一级色 | 亚洲自偷自偷偷色无码中文 | 午夜av一区二区三区 | 日韩爱爱片 | 岛国av免费观看 | 国产精品wwww | 男人操女人动态图 | 99精品视频在线免费观看 | 亚洲欧美一二三区 | 日本肉体xxxⅹ裸体交 |