题意:给你n个墓室,m条路径,一个人在1号墓室(起点),另一个人在n号墓室(终点),起点的那个人只有通过最短路径才能追上终点的那个人,而终点的那个人能切断任意路径。

第一问——终点那人要使起点那人不能追上的情况下可以切的最少的路径数,输出最少的路径数

第二问——起点那人能追上终点那人的情况下,终点那人能切断的最多的路径数,输出最多的路径数

我们先用dijstra计算出最短距离 然后通过最短距离建边 建成每条边容量为1 的 网络流 然后再求这个图的最大流  最大流等于最小割  因为我们知道了 最短路是个GAD 然后我们直接再找一次便可

  1. #include <iostream>
  2. #include <algorithm>
  3. #include <string.h>
  4. #include <cstdio>
  5. #include <vector>
  6. #include <queue>
  7. using namespace std;
  8. const int INF=;
  9. const int maxn=+;
  10.  
  11. struct Dinic{
  12. struct Edge{
  13. int from,to,cap,flow;
  14. Edge(int cfrom, int cto , int ccap, int cflow)
  15. {
  16. from=cfrom; to=cto; cap=ccap;flow=cflow;
  17. }
  18. };
  19. int n,m,s,t;
  20. vector<Edge>edges;
  21. vector<int>G[maxn];
  22. int d[maxn];
  23. int cur[maxn];
  24. void init(int n)
  25. {
  26. this->n=n;
  27. edges.clear();
  28. for(int i=; i<=n; i++)G[i].clear();
  29. }
  30. void AddEdge(int from,int to, int cap)
  31. {
  32. edges.push_back(Edge(from,to,cap,));
  33. edges.push_back(Edge(to,from,,));
  34. m=edges.size();
  35. G[from].push_back(m-);
  36. G[to].push_back(m-);
  37. }
  38. bool BFS()
  39. {
  40. memset(d,-,sizeof(d));
  41. queue<int>Q;
  42. Q.push(s);
  43. d[s]=;
  44. while(!Q.empty())
  45. {
  46. int x =Q.front(); Q.pop();
  47. for(int i=; i<G[x].size(); i++)
  48. {
  49. Edge &e=edges[G[x][i]];
  50. if((d[e.to]==-)&&e.cap>e.flow){
  51. d[e.to]=d[x]+;
  52. Q.push(e.to);
  53. }
  54. }
  55. }
  56. return d[t]!=-;
  57. }
  58. int DFS(int x, int a)
  59. {
  60. if(x==t || a<=)return a;
  61. int flow=,f;
  62. for(int &i=cur[x]; i<G[x].size(); i++)
  63. {
  64. Edge &e=edges[G[x][i]];
  65. if(d[x]+==d[e.to]&&(f=DFS(e.to,min(a,e.cap-e.flow)))>)
  66. {
  67. e.flow+=f;
  68. edges[G[x][i]^].flow-=f;
  69. flow+=f;
  70. a-=f;
  71. if(a==)break;
  72. }
  73. }
  74. return flow;
  75. }
  76. int Maxflow(int s, int t)
  77. {
  78. this->s=s; this->t=t;
  79. int flow=;
  80. while(BFS())
  81. {
  82. memset(cur,,sizeof(cur));
  83. flow+=DFS(s,INF-);
  84. }
  85. return flow;
  86. }
  87. };
  88. struct Dijskstr
  89. {
  90.  
  91. struct Edge
  92. {
  93. int from,to,dist;
  94. Edge(int cfrom, int cto, int cdist)
  95. {
  96. from=cfrom; to=cto; dist=cdist;
  97. }
  98. };
  99. struct HeapNode
  100. {
  101. int d,u;
  102. bool operator <(const HeapNode &rhs) const{
  103. return d>rhs.d;
  104. }
  105. HeapNode(int cd ,int cu)
  106. {
  107. d=cd; u=cu;
  108. }
  109. };
  110. int dis[maxn];
  111. int n,m;
  112. vector<Edge>edges;
  113. vector<int>G[maxn];
  114. bool done[maxn];
  115. int d[maxn];
  116. void init(int n)
  117. {
  118. this->n=n;
  119. for(int i=; i<=n; i++)G[i].clear();
  120. edges.clear();
  121. }
  122. void AddEdge(int from , int to, int dist)
  123. {
  124. edges.push_back(Edge(from,to,dist));
  125. m=edges.size();
  126. G[from].push_back(m-);
  127. }
  128. void dijkstra(int s)
  129. {
  130. priority_queue<HeapNode>Q;
  131. for(int i=; i<=n; i++)d[i]=INF;
  132. d[s]=;
  133. memset(done,,sizeof(done));
  134. Q.push(HeapNode(,s));
  135. while(!Q.empty())
  136. {
  137. HeapNode x=Q.top(); Q.pop();
  138. int u=x.u;
  139. if(done[u]) continue;
  140. done[u]=true;
  141. for(int i=; i<G[u].size(); i++)
  142. {
  143. Edge &e=edges[G[u][i]];
  144. if(d[e.to]>d[u]+e.dist)
  145. {
  146. d[e.to]=d[u]+e.dist;
  147. Q.push(HeapNode(d[e.to],e.to));
  148. }
  149. }
  150. }
  151. }
  152. Dinic dic;
  153. int solve()
  154. {
  155. for(int i=; i<=n; i++)dis[i]=INF;
  156. queue<int>Q;
  157. Q.push();
  158. dis[]=;
  159. dic.init(n);
  160. while(!Q.empty())
  161. {
  162. int x= Q.front();Q.pop();
  163. int siz=G[x].size();
  164. for(int i=; i<siz; i++)
  165. {
  166. Edge &e=edges[G[x][i]];
  167. if(d[e.to]==d[x]+e.dist){
  168. dic.AddEdge(x,e.to,);
  169. dis[e.to]=min(dis[e.to],dis[x]+);
  170. Q.push(e.to);
  171. }
  172. }
  173. }
  174. return dic.Maxflow(,n);
  175. }
  176. }dij;
  177. int main()
  178. {
  179. int n,m;
  180. while(scanf("%d%d",&n,&m)==)
  181. {
  182. if(n==){
  183. while(true);
  184. }
  185. dij.init(n);
  186. for(int i=; i<m; i++)
  187. {
  188. int a,b,li;
  189. scanf("%d%d%d",&a,&b,&li);
  190. dij.AddEdge(a,b,li);
  191. dij.AddEdge(b,a,li);
  192.  
  193. }
  194. dij.dijkstra();
  195. if(dij.d[n]==INF){
  196. while(true);
  197. }
  198. int d2=dij.solve();
  199. printf("%d %d\n",d2,m-dij.dis[n]);
  200. }
  201. return ;
  202. }

hdu5294 网络流+dijskstr的更多相关文章

  1. plain framework 1 网络流 缓存数据详解

    网络流是什么?为什么网络流中需要存在缓存数据?为什么PF中要采用缓存网络数据的机制?带着这几个疑问,让我们好好详细的了解一下在网络数据交互中我们容易忽视以及薄弱的一块.该部分为PF现有的网络流模型,但 ...

  2. 网络流模板 NetworkFlow

    身边的小伙伴们都在愉快地刷网络流,我也来写一发模板好了. Network Flow - Maximum Flow Time Limit : 1 sec, Memory Limit : 65536 KB ...

  3. COGS732. [网络流24题] 试题库

    «问题描述:假设一个试题库中有n道试题.每道试题都标明了所属类别.同一道题可能有多个类别属性.现要从题库中抽取m 道题组成试卷.并要求试卷包含指定类型的试题.试设计一个满足要求的组卷算法.«编程任务: ...

  4. ACM/ICPC 之 有流量上下界的网络流-Dinic(可做模板)(POJ2396)

    //有流量上下界的网络流 //Time:47Ms Memory:1788K #include<iostream> #include<cstring> #include<c ...

  5. BZOJ 3144 [Hnoi2013]切糕 ——网络流

    [题目分析] 网络流好题! 从割的方面来考虑问题往往会得到简化. 当割掉i,j,k时,必定附近的要割在k-D到k+D上. 所以只需要建两条inf的边来强制,如果割不掉强制范围内的时候,原来的边一定会换 ...

  6. bzoj3572又TM是网络流

    = =我承认我写网络流写疯了 = =我承认前面几篇博文都是扯淡,我写的是垃圾dinic(根本不叫dinic) = =我承认这道题我调了半天 = =我承认我这道题一开始是T的,后来换上真正的dinic才 ...

  7. hdu3549还是网络流

    最后一次训练模板(比较熟练了) 接下来训练网络流的建图 #include <cstdio> #define INF 2147483647 int n,m,ans,x,y,z,M,h,t,T ...

  8. 二分图&网络流&最小割等问题的总结

    二分图基础: 最大匹配:匈牙利算法 最小点覆盖=最大匹配 最小边覆盖=总节点数-最大匹配 最大独立集=点数-最大匹配 网络流: 技巧: 1.拆点为边,即一个点有限制,可将其转化为边 BZOJ1066, ...

  9. COGS743. [网络流24题] 最长k可重区间集

    743. [网络流24题] 最长k可重区间集 ★★★   输入文件:interv.in   输出文件:interv.out   简单对比时间限制:1 s   内存限制:128 MB «问题描述: «编 ...

随机推荐

  1. 微软实战训练营(X)重点班第(1)课:SOA必备知识之ASP.NET Web Service开发实战

    微软实战训练营 上海交大(A)实验班.(X)重点班 内部课程资料 链接:http://pan.baidu.com/s/1jGsTjq2 password:0wmf <微软实战训练营(X)重点班第 ...

  2. OC分割输入验证码的视觉效果

    效果图: 用到的类: UITextField+VerCodeTF.h #import <UIKit/UIKit.h> @protocol VerCodeTFDelegate <UIT ...

  3. MySQL 多源复制(Mulit-Source Replication)

    MySQL多源复制方案        看复制源Master_1的同步状态:SHOW SLAVE STATUS FOR CHANNEL 'Master_1'\G 查看复制源Master_2的同步状态:S ...

  4. AlertWindowManager 弹出提示窗口使用帮助(上)

    LookAndFeel(界面外观): NativeStyle:本地化界面为真实用系统内置外观 SkinName:本地化界面(NativeStyle:)设置为假可使用皮肤外观 OptionAnimate ...

  5. 多线程下的单例-double check

    话不多说直接上代码: public sealed class Singleton { private static Singleton _instance = null; // Creates an ...

  6. Cell complex单元复合形

    概念 (1)Piecewise linear complex (PLC) 分段线性复合形 (2)Cell complex 单元复合形 [1] (元胞复合形) (3)Linear Cell Comple ...

  7. cloud-api-service和cloud-iopm-web提交merge方法

    cloud-api-service应该push to '自己的分支',然后去gitserver请求合并 cloud-iopm-web(master分支)应该push to Upstream,然后去gi ...

  8. (转)Geth控制台使用及Web3.js使用实战

    在开发以太坊去中心化应用,免不了和以太坊进行交互,那就离不开Web3.Geth 控制台(REPL)实现了所有的web3 API及Admin API,使用好 Geth 就是必修课.结合Geth命令用法阅 ...

  9. Linux下samba服务搭建

    参考: https://www.cnblogs.com/lxyqwer/p/7271369.html https://www.cnblogs.com/liulipeng/p/3406352.html ...

  10. jsp内置对象学习记录

    1.session,是一个会话保留在服务器端的对象(默认保留时间为30分钟),所以我们可以在session里面放用户信息以便后续的访问便利(缺点:cookie劫持,导致用户数据泄露).案例:(1)同个 ...