博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 1376 Animal Run 最短路
阅读量:6405 次
发布时间:2019-06-23

本文共 1978 字,大约阅读时间需要 6 分钟。

平面图最小割转最短路

书上是说以边为结点建图

但是我觉得好像以每块空白区域为结点建图会更自然点。把矩形的右上方编号为0,左下方编号为1,分别为起点终点

//#pragma comment(linker, "/STACK:1024000000,1024000000")#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef unsigned long long ull;typedef pair
pii;#define pb(a) push(a)#define INF 0x1f1f1f1f#define lson idx<<1,l,mid#define rson idx<<1|1,mid+1,r#define PI 3.1415926535898template
T min(const T& a,const T& b,const T& c) { return min(min(a,b),min(a,c));}template
T max(const T& a,const T& b,const T& c) { return max(max(a,b),max(a,c));}void debug() {#ifdef ONLINE_JUDGE#else freopen("in.txt","r",stdin); //freopen("d:\\out1.txt","w",stdout);#endif}int getch() { int ch; while((ch=getchar())!=EOF) { if(ch!=' '&&ch!='\n')return ch; } return EOF;}struct HeapNode{ int d,u; bool operator < (const HeapNode &ant) const { return d>ant.d; }};struct Edge{ int from,to; int dist;};const int maxn=2000005;struct Dijksta{ int n; vector
g[maxn]; vector
edge; int done[maxn]; int d[maxn]; void init(int n) { this->n=n; for(int i=0;i<=n;i++) g[i].clear(); edge.clear(); } void add(int u,int v,int w) { Edge e=(Edge){u,v,w}; edge.push_back(e); g[u].push_back(edge.size()-1); } void solve(int s) { for(int i=0;i<=n;i++) d[i]=INF; memset(done,0,sizeof(done)); d[s]=0; priority_queue
q; q.push((HeapNode){ 0,s}); while(!q.empty()) { HeapNode x=q.top();q.pop(); if(done[x.u])continue; int u=x.u; done[u]=1; for(int i=0;i
=m)return 0; if(a>=n||b<1)return 1; int &x=id[a][b][d]; if(x==0)x=++vcnt; return x;}int main(){ //freopen("d:\\in1.txt","r",stdin); int ca=0; while(scanf("%d%d",&n,&m)!=EOF&&m) { solver.init(n*m*2+2); vcnt=2; memset(id,0,sizeof(id)); //horizontal for(int i=1;i<=n;i++) for(int j=1;j
View Code

 

 

转载于:https://www.cnblogs.com/BMan/p/3632975.html

你可能感兴趣的文章
Spark分析之SparkContext启动过程分析
查看>>
2014电子商务安全技术峰会(含全议题下载)
查看>>
东大OJ-5到100000000之间的回文质数
查看>>
linux C 快速排序法
查看>>
模仿与创新
查看>>
Python用subprocess的Popen来调用系统命令
查看>>
Java NIO与IO的差别和比較
查看>>
.NET源代码的内部排序实现
查看>>
解决Strict Standards: Only variables should be passed by reference
查看>>
解决JBoss只能通过localhost(127.0.0.1)而不能通过IP访问
查看>>
MS SQL处理双引号(DoubleQuote)函数
查看>>
[智能架构系列]什么是Buddy智能开发框架
查看>>
三十一、关于android camera setParameters出错
查看>>
【收藏】QCIF、 CIF、2CIF、DCIF、D1(4CIF)格式介绍
查看>>
hdu 3836 Equivalent Sets (tarjan缩点)
查看>>
一些iOS高效开源类库(转)
查看>>
JAVA编程心得-JAVA实现CRC-CCITT(XMODEM)算法
查看>>
C# DES加密
查看>>
浅谈Oracle分区表之范围分区
查看>>
IBM Tivoli NetView网管软件实战
查看>>