拆点,将一个柱子拆成入点和出点,入点出点之间的容量就是柱子的容量

     1066: [SCOI2007]蜥蜴

在一个r行c列的网格地图中有一些高度不同的石柱,一些石柱上站着一些蜥蜴,你的任务是让尽量多的蜥蜴逃
到边界外。 每行每列中相邻石柱的距离为1,蜥蜴的跳跃距离是d,即蜥蜴可以跳到平面距离不超过d的任何一个石
柱上。石柱都不稳定,每次当蜥蜴跳跃时,所离开的石柱高度减1(如果仍然落在地图内部,则到达的石柱高度不
变),如果该石柱原来高度为1,则蜥蜴离开后消失。以后其他蜥蜴不能落脚。任何时刻不能有两只蜥蜴在同一个
石柱上。

Input

  输入第一行为三个整数r,c,d,即地图的规模与最大跳跃距离。以下r行为石竹的初始状态,0表示没有石柱
,1~3表示石柱的初始高度。以下r行为蜥蜴位置,“L”表示蜥蜴,“.”表示没有蜥蜴。

Output

  输出仅一行,包含一个整数,即无法逃离的蜥蜴总数的最小值。

Sample Input

5 8 2
00000000
02000000
00321100
02000000
00000000
........
........
..LLLL..
........
........

Sample Output

1

 #include<cstdio>
#include<queue>
#include<cstring>
#include<algorithm>
using namespace std;
const int INF=0x3f3f3f3f;
int r,c,d,st,ed,tot;
int dis[],head[];
char mp[];
struct node
{
    int x,y,ab;
    bool ri;
} p[];
struct line
{
    int to,next,w;
} e[];
void add(int u,int v,int w)
{
    e[tot].to=v;
    e[tot].next=head[u];
    e[tot].w=w;
    head[u]=tot++;
}
bool bfs()
{
    queue<int>Q;
    Q.push(st);
    memset(dis,-,sizeof(dis));
    dis[st]=;
    while(!Q.empty())
    {
        int u=Q.front();
        Q.pop();
        for(int i=head[u]; i+; i=e[i].next)
        {
            int v=e[i].to;
            if(dis[v]==-&&e[i].w>)
            {
                dis[v]=dis[u]+;
                if(v==ed) return true;
                Q.push(v);
            }
        }
    }
    return false;;
}
int dfs(int u,int low)
{
    if(u==ed) return low;
    int ans=low,a;
    for(int i=head[u]; i+; i=e[i].next)
    {
        int v=e[i].to;
        if(e[i].w>&&dis[v]==dis[u]+&&(a=dfs(v,min(ans,e[i].w))))
        {
            e[i].w-=a;
            e[i^].w+=a;
            ans-=a;
            if(!ans) return low;
        }
    }
    if(ans==low) dis[u]=-;
    return low-ans;
}
bool Ju(const node &A,const node &B)
{
    int dis=(A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y);
    if(dis>d) return false;
    return true;
}
int dinic()
{
    int ans=;
    while(bfs())
    {
        ans+=dfs(,INF);
    }
    return ans;
}
int main()
{
    scanf("%d%d%d",&r,&c,&d);
    int cont=,ct=;
    tot=;
    for(int i=; i<r; ++i)
    {
        scanf("%s",mp);
        for(int j=; j<c; ++j)
        {
            p[++cont].x=i;
            p[cont].y=j;
            p[cont].ab=mp[j]-'';
        }
    }
    st=,ed=*cont+;
    memset(head,-,sizeof(head));
    cont=;
    for(int i=; i<r; ++i)
    {
        scanf("%s",mp);
        for(int j=; j<c; ++j)
            if(mp[j]=='L') p[++cont].ri=,++ct;
            else p[++cont].ri=;
    }
    for(int i=; i<=cont; ++i)
    {
        if(p[i].ab)
        {
            add(i,i+cont,p[i].ab), add(i+cont,i,);
            if(p[i].ri) add(,i,),add(i,,);
            for(int j=; j<=cont; ++j)
            {
                if(i==j) continue;
                if(p[j].ab&&Ju(p[i],p[j]))
                {
                    add(i+cont,j,INF);
                    add(j,i+cont,);
                }
            }
            if(p[i].x-d<||p[i].x+d>=r||p[i].y-d<||p[i].y+d>=c)
            {
                    add(i+cont,ed,INF);
                    add(ed,i+cont,);
            }
        }
    }
    int ans=dinic();
    printf("%d\n",ct-ans);
}

最新文章

  1. php ajax 交互
  2. Format可能存在的坑
  3. [转]LOG4J汇编教程edit Z10
  4. SMO优化算法(Sequential minimal optimization)
  5. SRM 403(1-250pt, 1-500pt)
  6. 函数响应式编程及ReactiveObjC学习笔记 (二)
  7. python (5分钟实现一个游戏的屏蔽敏感字系统,)
  8. inux_异常_07_ftp查看不到文件列表
  9. 8086的分段寻址技术学习总结(Segmented Addressing)
  10. 玩转Vuejs--数组监听
  11. html5 css练习浮动布局
  12. rest framework错误笔记——身份验证和权限
  13. [转]单据套打WINFORM实现,带预览功能
  14. Docker应用之容器
  15. php 错误和异常处理
  16. Java多线程编程 — 锁优化
  17. (转)LVS安装使用详解
  18. [转载]有经验的Java开发者和架构师容易犯的10个错误
  19. .Net Mvc框架知识点
  20. Python time和datatime模块

热门文章

  1. Ubuntu 之 win10更新ubuntu启动项消失
  2. js中的this指针的用法
  3. CF思维联系--CodeForces -214C (拓扑排序+思维+贪心)
  4. USACO Training Section 1.2 [USACO1.2]方块转换 Transformations
  5. 疯子的算法总结(九) 图论中的矩阵应用 Part 2 矩阵树 基尔霍夫矩阵定理 生成树计数 Matrix-Tree
  6. Jenkins 部署(基于 Linux)
  7. RF(读写 excel)
  8. Automatic Reference Counting
  9. spring mvc实现转发和重定向
  10. 最终父类【根类】:Object类&amp;Objects类