hdu 2686 & hdu 3376 (비용 흐름, 교묘 한 건축 도)
hdu 3376 데 이 터 를 크게 틀 면 됩 니 다. N = 720010
#include<stdio.h>
#include<string.h>
#include<queue>
const int N=2000;
const int inf=0x3fffffff;
using namespace std;
int dist[N],head[N],num,start,end,n,vis[N],pre[N];
struct edge
{
int st,ed,cost,flow,next;
}e[N*10];
void addedge(int x,int y,int c,int w)
{
e[num].st=x;e[num].ed=y;e[num].cost=c; e[num].flow=w;e[num].next=head[x];head[x]=num++;
e[num].st=y;e[num].ed=x;e[num].cost=-c;e[num].flow=0;e[num].next=head[y];head[y]=num++;
}
int SPFA()
{
queue<int>Q;
int i,v,u;
for(i=0;i<=end;i++)
{dist[i]=-1;vis[i]=0;pre[i]=-1;}
dist[start]=0;vis[start]=1;
Q.push(start);
while(!Q.empty())
{
u=Q.front();Q.pop();
vis[u]=0;
for(i=head[u];i!=-1;i=e[i].next)
{
v=e[i].ed;
if(e[i].flow>0&&dist[v]<dist[u]+e[i].cost)
{
dist[v]=dist[u]+e[i].cost;
pre[v]=i;
if(vis[v]==0)
{
Q.push(v);
vis[v]=1;
}
}
}
}
if(pre[end]==-1)
return 0;
return 1;
}
int Maxcost()
{
int i,maxflow=0,minflow,maxcost=0;
while(SPFA())
{
minflow=inf;
for(i=pre[end];i!=-1;i=pre[e[i].st])
if(minflow>e[i].flow)
minflow=e[i].flow;
maxflow+=minflow;
for(i=pre[end];i!=-1;i=pre[e[i].st])
{
e[i].flow-=minflow;
e[i^1].flow+=minflow;
maxcost+=e[i].cost;
}
}
//printf("maxflow=%d
",maxflow);
return maxcost;
}
int main()
{
int i,j,t,x,w;
while(scanf("%d",&n)!=-1)
{
t=n*n;start=0;end=t*2+1;num=0;
memset(head,-1,sizeof(head));
addedge(start,1,0,2);
addedge(t+t,end,0,2);
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
{
scanf("%d",&w);
x=i*n+j-n;
addedge(x,x+t,w,1);
addedge(x,x+t,0,1);
if(j+1<=n)
addedge(x+t,x+1,0,2);
if(i+1<=n)
addedge(x+t,x+n,0,2);
}
printf("%d
",Maxcost());
}
return 0;
}
’
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Linux Shell 프로 그래 밍 - 텍스트 처리 grep, sed사용자 가 지정 한 '모드' 에 따라 대상 텍스트 를 일치 하 게 검사 하고 일치 하 는 줄 을 인쇄 합 니 다. ##포함 되 지 않 음, 역방향 일치 \ ##키워드 앞 뒤 가 맞지 않 고 키워드 만 일치 합 니 다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.