题意:

300个坑,每个坑能从别的坑引水,或者自己出水,i从j饮水有个代价,每个坑自己饮水也有代价,问让所有坑都有谁的最少代价

思路:

先建一个n的完全图,然后建一个超级汇点,对每个点连w[i],跑mst,这样就能保证所有坑联通,并且至少有一个坑有水

代码:

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. #include<cmath>
  5. #include<cstring>
  6. #include<string>
  7. #include<stack>
  8. #include<queue>
  9. #include<deque>
  10. #include<set>
  11. #include<vector>
  12. #include<map>
  13.  
  14. #define fst first
  15. #define sc second
  16. #define pb push_back
  17. #define mem(a,b) memset(a,b,sizeof(a))
  18. #define lson l,mid,root<<1
  19. #define rson mid+1,r,root<<1|1
  20. #define lc root<<1
  21. #define rc root<<1|1
  22. //#define lowbit(x) ((x)&(-x))
  23.  
  24. using namespace std;
  25.  
  26. typedef double db;
  27. typedef long double ldb;
  28. typedef long long ll;
  29. typedef unsigned long long ull;
  30. typedef pair<int,int> PI;
  31. typedef pair<ll,ll> PLL;
  32.  
  33. const db eps = 1e-;
  34. const int mod = 1e9+;
  35. const int maxn = 2e6+;
  36. const int maxm = 2e6+;
  37. const int inf = 0x3f3f3f3f;
  38. const db pi = acos(-1.0);
  39.  
  40. int p[][];
  41. int w[];
  42. int n;
  43. int f[maxn];
  44. int find(int x){
  45. return f[x]==x?x:f[x]=find(f[x]);
  46. }
  47. struct node{
  48. int x, y;
  49. int w;
  50. }edge[maxn];
  51. bool cmp(node a, node b){
  52. return a.w<b.w;
  53. }
  54. int tot;
  55. int add(int x, int y, int w){
  56. edge[++tot].x=x;
  57. edge[tot].y=y;
  58. edge[tot].w=w;
  59. }
  60. int main(){
  61. scanf("%d", &n);
  62. for(int i = ; i <= n; i++){
  63. scanf("%d", &w[i]);
  64. add(,i,w[i]);
  65. }
  66. for(int i = ; i <= n; i++){
  67. for(int j = ; j <= n; j++){
  68. scanf("%d", &p[i][j]);
  69. add(i,j,p[i][j]);
  70. }
  71. }
  72. for(int i = ; i <= n; i++)f[i]=i;
  73. sort(edge+, edge++tot,cmp);
  74. int cnt = ;
  75. int ans = ;
  76. for(int i = ; i <= tot; i++){
  77. int x = edge[i].x;
  78. int y = edge[i].y;
  79. int w = edge[i].w;
  80. int t1 = find(x);
  81. int t2 = find(y);
  82. if(t1 != t2){
  83. f[t1] = t2;
  84. ans+=w;
  85. cnt++;
  86. }
  87. if(cnt==n)break;
  88. }
  89. printf("%d",ans);
  90. return ;
  91. }
  92.  
  93. /*
  94. 4
  95. 5
  96. 4
  97. 4
  98. 3
  99. 0 2 2 2
  100. 2 0 3 3
  101. 2 3 0 4
  102. 2 3 4 0
  103. */

BZOJ 1601 [Usaco2008 Oct]灌水 (建图+mst)的更多相关文章

  1. BZOJ 1601 [Usaco2008 Oct]灌水

    1601: [Usaco2008 Oct]灌水 Time Limit: 5 Sec  Memory Limit: 162 MB Description Farmer John已经决定把水灌到他的n(1 ...

  2. BZOJ 1601 [Usaco2008 Oct]灌水 (最小生成树)

    题意 Farmer John已经决定把水灌到他的n(1<=n<=300)块农田,农田被数字1到n标记.把一块土地进行灌水有两种方法,从其他农田饮水,或者这块土地建造水库. 建造一个水库需要 ...

  3. BZOJ 1601 [Usaco2008 Oct]灌水:最小生成树

    题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1601 题意: Farmer John已经决定把水灌到他的n(1<=n<=300 ...

  4. BZOJ——1601: [Usaco2008 Oct]灌水

    http://www.lydsy.com/JudgeOnline/problem.php?id=1601 Time Limit: 5 Sec  Memory Limit: 162 MBSubmit:  ...

  5. BZOJ 1601: [Usaco2008 Oct]灌水 最小生成树_超级源点

    Description Farmer John已经决定把水灌到他的n(1<=n<=300)块农田,农田被数字1到n标记.把一块土地进行灌水有两种方法,从其他农田饮水,或者这块土地建造水库. ...

  6. BZOJ 1601: [Usaco2008 Oct]灌水( MST )

    MST , kruskal 直接跑 ---------------------------------------------------------------------- #include< ...

  7. Kruskal || BZOJ 1601: [Usaco2008 Oct]灌水 || Luogu P1550 [USACO08OCT]打井Watering Hole

    题面:P1550 [USACO08OCT]打井Watering Hole 题解:无 代码: #include<cstdio> #include<cstring> #includ ...

  8. bzoj 1601: [Usaco2008 Oct]灌水【最小生成树】

    挺有意思的思路 如果不能自己打井,那么就是MST裸题了,考虑转换一下,自己打井就相当于连接一口虚拟的井(地下水?),所有井i到这口井的距离是w[i],这样把所有边排个序跑MST即可 #include& ...

  9. 1601: [Usaco2008 Oct]灌水

    1601: [Usaco2008 Oct]灌水 Time Limit: 5 Sec  Memory Limit: 162 MB Submit: 1342  Solved: 881 [Submit][S ...

随机推荐

  1. [ASP.NET Core 3框架揭秘] Options[1]: 配置选项的正确使用方式[上篇]

    依赖注入不仅是支撑整个ASP.NET Core框架的基石,也是开发ASP.NET Core应用采用的基本编程模式,所以依赖注入十分重要.依赖注入使我们可以将依赖的功能定义成服务,最终以一种松耦合的形式 ...

  2. 理解TCP/IP协议栈之HTTP2.0

    1 前言 前面写了10多篇关于Redis底层实现.工程架构.实际应用的文章,感兴趣的读者可以进行阅读,如有问题欢迎交流: 1.Redis面试热点之底层实现篇-12.Redis面试热点之底层实现篇-23 ...

  3. floyd + 最大流 (奶牛分配问题)

    FJ has moved his K (1 <= K <= 30) milking machines out into the cow pastures among the C (1 &l ...

  4. bfs + 路径输出

    You are given two pots, having the volume of A and B liters respectively. The following operations c ...

  5. jQuery, 文本框获得焦点后, placeholder提示文字消失

    文本框获得焦点后, 提示文字消失, 基于jQuery, 兼容性: html5 //所有文本框获得焦点后, 提示文字消失 $('body').on('focus', 'input[placeholder ...

  6. Heroku学习 - 利用Heroku app实现 OrgA 查询Org B 的数据数据

    最近研究了一番如何通过Heroku应用对OrgA开放一个接口,参数传递的是一个SQL,APP的负责将SQL通过callout的形式调用目标OrgB Rest API来获取数据并返回给OrgA.我是用的 ...

  7. GoldenGate DB11gr2配置手册

    GoldenGate DB11gr2配置手册 源端数据库配置 1.1源端数据库打开Archive Log: SQL>shutdown immediate; SQL>startup moun ...

  8. CQBZOJ 邮递员(直播剪枝技巧)

    题目描述 Mirko在一个山镇找到了一份邮递员的工作.这个镇可以看作一个N*N的矩形.每个区域可能是以下之一:房子K,邮政局P,草地 '.'.每个区域都有一个海拔. 每天早上,Mirko要送信给镇上所 ...

  9. 龙芯 3B1500 Fedora28 安装笔记

    版权声明:原创文章,未经博主允许不得转载 龙芯 3A4000 已经发布,十年前的 3B1500 早就落伍了.但我还是打算把它作为寒假刷 ACM 题的主力机 并将此当作年后收到 4000 的预习. 龙芯 ...

  10. python实例:从excel读取股票代码,爬取股票信息写到代码后面的单元格中

    关键词:爬虫.python.request.接口.excel处理 思路: 1.首先准备好excel文档,把股票代码事先编辑进去. 2.脚本读取文档,依次读出股票代码到指定站点发起请求获取股票信息 3. ...