UVa563_Crimewave(网络流/最大流)(小白书图论专题)

Posted yangykaifa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVa563_Crimewave(网络流/最大流)(小白书图论专题)相关的知识,希望对你有一定的参考价值。

解题报告

思路:

要求抢劫银行的伙伴(想了N多名词来形容,强盗,贼匪,小偷,sad。都认为不合适)不在同一个路口相碰面,能够把点拆成两个点,一个入点。一个出点。

再设计源点s连向银行位置。再矩阵外围套上一圈。连向汇点t

矩阵内的点,出点和周围的点的出点相连。

#include <iostream>
#include <cstring>
#include <cstdio>
#include <queue>
#define M 500000
#define N 10000
#define inf 0x3f3f3f3f
using namespace std;
int n,m,h,w,head[N],pre[N],l[N],mmap[N][N],cnt,s,t;
struct node {
    int  v,w,next;
} edge[M];
int dx[]= {-1,0,1,0};
int dy[]= {0,1,0,-1};
void add(int u,int v,int w) {
    edge[cnt].v=v;
    edge[cnt].w=w;
    edge[cnt].next=head[u];
    head[u]=cnt++;

    edge[cnt].v=u;
    edge[cnt].w=0;
    edge[cnt].next=head[v];
    head[v]=cnt++;
}
int bfs() {
    memset(l,-1,sizeof(l));
    l[s]=0;
    int i,u,v;
    queue<int >Q;
    Q.push(s);
    while(!Q.empty()) {
        u=Q.front();
        Q.pop();
        for(i=head[u]; i!=-1; i=edge[i].next) {
            v=edge[i].v;
            if(l[v]==-1&&edge[i].w) {
                l[v]=l[u]+1;
                Q.push(v);
            }
        }
    }
    return l[t]>0;
}
int dfs(int u,int f) {
    int a,flow=0;
    if(u==t)return f;
    for(int i=head[u]; i!=-1; i=edge[i].next) {
        int v=edge[i].v;
        if(l[v]==l[u]+1&&edge[i].w&&(a=dfs(v,min(f,edge[i].w)))) {
            edge[i].w-=a;
            edge[i^1].w+=a;
            flow+=a;
            f-=a;
            if(!f)break;
        }
    }
    if(!flow)l[u]=-1;
    return flow;
}
int main() {
    int i,j,T,k,x,y;
    scanf("%d",&T);
    while(T--) {
        cnt=k=0;
        memset(head,-1,sizeof(head));
        scanf("%d%d%d",&h,&w,&m);
        h+=2;
        w+=2;
        for(i=0; i<h; i++) {
            for(j=0; j<w; j++) {
                mmap[i][j]=++k;
            }
        }
        s=0;
        t=k*2+1;
        for(i=1; i<h-1; i++) {
            for(j=1; j<w-1; j++) {
                add(mmap[i][j],mmap[i][j]+k,1);
                for(int l=0; l<4; l++) {
                    int x=i+dx[l];
                    int y=j+dy[l];
                    if(x>=1&&x<h-1&&y>=1&&y<w-1)
                        add(mmap[i][j]+k,mmap[x][y],1);
                }
            }
        }
        for(i=1; i<w-1; i++) {
            add(mmap[1][i]+k,mmap[0][i],1);
            add(mmap[0][i],t,1);
            add(mmap[h-2][i]+k,mmap[h-1][i],1);
            add(mmap[h-1][i],t,1);
        }
        for(i=1; i<h-1; i++) {
            add(mmap[i][1]+k,mmap[i][0],1);
            add(mmap[i][0],t,1);
            add(mmap[i][w-2]+k,mmap[i][w-1],1);
            add(mmap[i][w-1],t,1);
        }
        for(i=0; i<m; i++) {
            scanf("%d%d",&x,&y);
            add(s,mmap[x][y],1);
        }
        int ans=0,a;
        while(bfs())
            while(a=dfs(s,inf))
                ans+=a;
        if(ans==m)
            printf("possible\n");
        else printf("not possible\n");
    }
    return 0;
}

  Crimewave 

Nieuw Knollendam is a very modern town. This becomes clear already when looking at the layout of its map, which is just a rectangular grid of streets and avenues. Being an important trade centre, Nieuw Knollendam also has a lot of banks. Almost on every crossing a bank is found (although there are never two banks at the same crossing). Unfortunately this has attracted a lot of criminals. Bank hold-ups are quite common, and often on one day several banks are robbed. This has grown into a problem, not only to the banks, but to the criminals as well. After robbing a bank the robber tries to leave the town as soon as possible, most of the times chased at high speed by the police. Sometimes two running criminals pass the same crossing, causing several risks: collisions, crowds of police at one place and a larger risk to be caught.


To prevent these unpleasant situations the robbers agreed to consult together. Every Saturday night they meet and make a schedule for the week to come: who is going to rob which bank on which day? For every day they try to plan the get-away routes, such that no two routes use the same crossing. Sometimes they do not succeed in planning the routes according to this condition, although they believe that such a planning should exist.


Given a grid of 技术分享 and the crossings where the banks to be robbed are located, find out whether or not it is possible to plan a get-away route from every robbed bank to the city-bounds, without using a crossing more than once.

Input 

The first line of the input contains the number of problems p to be solved.

  • The first line of every problem contains the number s of streets ( 技术分享), followed by the number a of avenues (技术分享), followed by the number b (技术分享) of banks to be robbed.

  • Then b lines follow, each containing the location of a bank in the form of two numbers x (the number of the street) andy (the number of the avenue). Evidently 技术分享 and 技术分享.

Output 

The output file consists of p lines. Each line contains the text possible or not possible. If it is possible to plan non-crossing get-away routes, this line should contain the word: possible. If this is not possible, the line should contain the words not possible.

Sample Input 

2
6 6 10
4 1
3 2
4 2
5 2
3 4
4 4
5 4
3 6
4 6
5 6
5 5 5
3 2
2 3
3 3
4 3
3 4

Sample Output 

possible
not possible

技术分享



Miguel A. Revilla 
1998-03-10







以上是关于UVa563_Crimewave(网络流/最大流)(小白书图论专题)的主要内容,如果未能解决你的问题,请参考以下文章

uva753 A Plug for UNIX 网络流最大流

UVa 11248 网络扩容(最大流(需要优化))

Uva 10480 Sabotage 最大流

UVa 1660 电视网络(点连通度+最小割最大流+Dinic)

uva 11082Matrix Decompressing(图论--网络流最大流 Dinic+拆点二分图匹配)

uva 11248 Frequency Hopping (最大流)