【BZOJ1001】[BeiJing2006]狼抓兔子

挺简单一个题,最小割模板

我的感觉就是可能建图的时候会比较麻烦吧,毕竟三个方向。

#include <cctype>
#include <climits>
#include <cstdio>
#include <cstring>
#include <iostream>#define debug(x) std::cout << #x << " = " << x << std::endl;#define __OPTIMIZED__INPUT__
int nextInt()
{int num = 0;char c;bool flag = false;while ((c = std::getchar()) == ' ' || c == '\r' || c == '\n' || c == '\t');if (c == '-')flag = true;elsenum = c - 48;while (std::isdigit(c = std::getchar()))num = num * 10 + c - 48;return (flag ? - 1 : 1) * num;
}struct
{int to;int nex;int v;
} e[600001];
int head[600001];
int h[600001], q[600001];
int ans, n, m;void Insert(const int u, const int v, const int w)
{static int tot = 0;tot++;e[tot].to = v;e[tot].v = w;e[tot].nex = head[u];head[u] = tot;
}bool bfs()
{int now, i;std::memset(h, 0xff, sizeof h);int t = 0;int w = 1;q[t] = 1;h[1] = 0;while (t < w){now = q[t];t++;i = head[now];for (int i = head[now]; i; i = e[i].nex)if (e[i].v && h[e[i].to] < 0){q[w++] = e[i].to;h[e[i].to] = h[now] + 1;}}if (h[n * m] == -1)return 0;return 1;
}int dfs(const int x, const int f)
{if (x == n * m)return f;int w, used = 0;for (int i = head[x]; i; i = e[i].nex)if (e[i].v && h[e[i].to] == h[x] + 1){w = dfs(e[i].to, std::min(w, e[i].v));e[i].v -= w;e[i + 1].v += w;used += w;if (used == f)return f;}if (!used)h[x] = -1;
//  debug(used);return used;
}void Dinic()
{while (bfs())ans += dfs(1, INT_MAX);
}int main(int argc, char ** argv)
{n = nextInt();m = nextInt();int x;for (int i = 1; i <= n; i++)for (int j = 1; j < m; j++){x = nextInt();Insert(m * (i - 1) + j, m * (i - 1) + j + 1, x);Insert(m * (i - 1) + j + 1, m * (i - 1) + j, x);}for (int i = 1; i < n; i++)for (int j = 1; j <= m; j++){x = nextInt();Insert(m * (i - 1) + j, m * i + j, x);Insert(m * i + j, m * (i - 1) + j, x);}for (int i = 1; i < n; i++)for (int j = 1; j < m; j++){x = nextInt();Insert(m * (i - 1) + j, m * i + j + 1, x);Insert(m * i + j + 1, m * (i - 1) + j, x);}Dinic();std::cout << ans/* << std::endl*/;
#ifdef __NOTEPADPPstd::cin.get();std::cin.get();
#endifreturn 0;
}

转载于:https://www.cnblogs.com/edwardtsui/p/6782858.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/396475.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

管理活动目录域服务实训_管理学院学生党支部开展实践教育基地服务活动

红星E校有态度 有温度 可关注为进一步加强党的建设&#xff0c;深化管理学院学生党支部与实践基地的互动性&#xff0c;2020年9月11至12日&#xff0c;管理学院学生党支部协助白鹤村村委实践基地完成第七次人口普查相关工作&#xff0c;共计6名预备党员参与。工作开始前的培训会…

mysql 汉编码 的选_peewee连接mysql汉语言数据编码_mysql

peewee连接mysql中文数据编码系统是win7 x64python 2.7.6的site.py里面编码设定为 utf-8py文件首行指定 #coding:utf-8mysql 5.5.38安装时指定代码为utf-8peewee的连接数据库代码为&#xff1a;db MySQLDatabase(host 127.0.0.1, user root, passwd 1, database mz, chars…

配置windows失败,还原更新,请勿关机

最近给同事装系统&#xff0c;偶尔会出现如下问题&#xff1a; 如果是这种情况&#xff0c;只能耐心等待了&#xff0c;因为关机也没用&#xff01; 转载于:https://www.cnblogs.com/lijy/p/5327844.html

使用Express和MongoDB构建简单的CRUD应用程序

by Zell Liew由Zell Liew 使用Express和MongoDB构建简单的CRUD应用程序 (Building a Simple CRUD Application with Express and MongoDB) For a long time, I didn’t dare venture into back end development. I felt intimidated because of my lack of an academic backgr…

python元类的使用_python中元类用法实例

本文实例讲述了python中元类用法&#xff0c;分享给大家供大家参考。具体方法分析如下&#xff1a;1.元类(metaclass)是用来创建类的类2.type(object):返回一个对象的类型&#xff0c;与object.__class__的值相同&#xff0c;type(name,bases,dict):创建一个新的type类型&#…

使用uicollectionView时需要注意的问题

1.UICollectionView使用流水布局——UICollectionViewFlowLayout时&#xff0c;需要满足条件&#xff1a; 每个item(即cell)的大小是一样的&#xff0c;不仅是宽度&#xff0c;还有高度。这样&#xff0c;当collectionview的宽度发生变化时&#xff0c;item能将其动态填充。ite…

hiveql函数笔记(二)

1、数据查询 //提高聚合的性能 SET hive.map.aggrtrue; SELECT count(*),avg(salary) FROM employees; //木匾不允许在一个查询语句中使用多于一个的函数&#xff08;DISTINCT。。。&#xff09;表达式 SELECT count(DISTINCT symbol) FROM stocks; 表生成函数&#xff1a; exp…

jQuery 常用的方法

<!DOCTYPE html><html lang"en"><head> <meta charset"utf-8"/> <title>品牌列表案例</title> <script src"js/jquery-2.1.1.min.js" rel"script"></script> <script…

swift 从手机选照片_19元起!定制专属手机壳!还可免费打印照片...

△剧透&#xff1a;文末有福利现在的年轻人体内涌动的都是追求有趣有特色的灵魂希望自己是这条gai最独一无二的仔撞衫撞包撞手机壳可以说是当代年轻人三大时尚忌讳尤其是手机壳极为重要毕竟换壳≈换机只需要几十元买新壳就可以拥有换新机般的仪式感不过作为手机壳老手都知道在某…

新手也能学会本地调试微信,natapp 官网映射

本地调试微信的新手指引~ 照着配置&#xff0c;一定可以配置成功&#xff0c;实现本地调试微信&#xff0c;公司好几个同事按照我写的步骤&#xff0c;都独立配成功了。 1.首选在natapp注册一个账号&#xff0c;申请免费隧道或者购买隧道&#xff0c;我买了一个月9元的付费隧道…

在JavaScript中反转字符串的三种方法

This article is based on Free Code Camp Basic Algorithm Scripting “Reverse a String”本文基于Free Code Camp基本算法脚本“ Reverse a String ” Reversing a string is one of the most frequently asked JavaScript question in the technical round of interview. …

c实现三角形角度大于一个值_初中数学三角形知识点小结

▊ 三角形两边定理&#xff1a;三角形两边的和大于第三边。推论&#xff1a;三角形两边的差小于第三边。▊ 三角形中位线定理三角形的中位线平行于第三边&#xff0c;并且等于它的一半。▊ 三角形的重心三角形的重心到顶点的距离是它到对边中点距离的2倍。在三角形中&#x…

【Spring】使用Spring和AMQP发送接收消息(下)

为什么80%的码农都做不了架构师&#xff1f;>>> 上篇讲了RabbitMQ连接工厂的作用是用来创建RabbitMQ的连接&#xff0c;本篇就来讲讲RabbitMQ的发送消息。通过RabbitMQ发送消息最简单的方式就是将connectionFactory Bean注入到服务层类中&#xff0c;并使用它创建C…

微软u盘安装工具_使用微软Winget工具安装软件教程

对于系统管理员来说&#xff0c;一款好用的软件包管理工具可以大大提高安装、部署、管理软件的效率。可之前只有 MscOS 和 Linux 官方才有软件包管理工具&#xff0c;微软官方现在终于为Windows系统发布了一款名为Winget的软件包管理工具&#xff0c;MS酋长下面就来为大家演示一…

ZOJ2930 The Worst Schedule(最小割)

题目大概说有n个任务&#xff0c;每个任务可以提前或推迟&#xff0c;提前或推迟各有一定的费用&#xff0c;有的任务一旦推迟另一个任务也必须推迟&#xff0c;问怎么安排任务使花费最少&#xff0c;且最少花费的条件下提前的任务数最多能多少。 问题就是要把各个任务分成两个…

为什么要free释放内存_为什么在Free Code Camp上列出一份工作要花1,000美元?

为什么要free释放内存by Michael D. Johnson迈克尔约翰逊(Michael D.Johnson) 为什么在Free Code Camp上列出一份工作要花1,000美元&#xff1f; (Why does it cost $1,000 to list a job on Free Code Camp?) I’ve recently spoken with employers looking for JavaScript …

python访问注册表_读取注册表的Python代码

如果“Uninstall”中有超过1024个子键怎么办&#xff1f;Use _winreg.QueryInfoKey(key)Python2:import errno, os, _winregproc_arch os.environ[PROCESSOR_ARCHITECTURE].lower()proc_arch64 os.environ[PROCESSOR_ARCHITEW6432].lower()if proc_arch x86 and not proc_ar…

ios 动画 隐藏tabbar_UITabBarViewController 的底部 tabBar 隐藏

iOS pushViewController 时候隐藏 TabBar 的可以用interfaceUIViewController (UINavigationControllerItem)property(nonatomic,readonly,strong)UINavigationItem*navigationItem;// Created on-demand so that a view controller may customize its navigation appearance.p…

JS进阶之---函数,立即执行函数

一、函数 函数声明、函数表达式、匿名函数 函数声明&#xff1a;使用function关键字声明一个函数&#xff0c;再指定一个函数名&#xff0c;叫函数声明。function name () { … } 函数表达式&#xff1a;使用function关键字声明一个函数&#xff0c;但未给函数命名&#xff0c;…

主线程中有多个handler的情况

https://www.cnblogs.com/transmuse/archive/2011/05/16/2048073.html转载于:https://www.cnblogs.com/genggeng/p/9806415.html