uva 12264 Risk
https://vjudge.net/problem/UVA-12264
题意:
有很多个阵地,分为敌方和己方,每个士兵可以移动到相邻的己方的阵地,但是只能移动一步。
现在要让与敌方相邻的阵地中士兵最少的最多。
思路:
最少的最多,那显然二分。
二分这个最少的值。拆点,敌方阵地不管,S向己方阵地\(i\)向连边,容量为本阵地士兵的数量,\(i'\)向T连边,如果是与敌方相邻的阵地,那么容量为二分的值;如果是处于己方阵地的包围,那么容量为1即可。最后跑最大流判断是否满流。
STD:
本STD在uva上AC,uvalive上WA,请谨慎食用。
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <queue>
#include <vector>
using namespace std;
const int inf = 0x3f3f3f3f;
const int N = 205;
int a[N];
char s[N][N];
bool is[N];
struct edge
{
int u,v,cap;
edge(int u,int v,int cap):u(u),v(v),cap(cap){}
edge(){}
};
vector<edge> es;
vector<int> G[N];
int n,S,T;
int dis[N],cur[N];
void adde(int u,int v,int cap)
{
es.push_back(edge(u,v,cap));
es.push_back(edge(v,u,0));
int sz = es.size();
G[u].push_back(sz-2);
G[v].push_back(sz-1);
}
bool bfs()
{
memset(dis,inf,sizeof dis);
dis[S] = 0;
queue<int> q;
q.push(S);
while (!q.empty())
{
int u = q.front();
q.pop();
for (int i = 0;i < G[u].size();i++)
{
edge &e = es[G[u][i]];
int v = e.v;
if (e.cap > 0 && dis[v] >= inf)
{
dis[v] = dis[u] + 1;
q.push(v);
}
}
}
return dis[T] < inf;
}
int dfs(int u,int flow)
{
if (u == T) return flow;
for (int i = cur[u];i < G[u].size();i++)
{
cur[u] = i;
edge &e = es[G[u][i]];
int v = e.v;
if (dis[v] == dis[u] + 1 && e.cap > 0)
{
int tmp = dfs(v,min(e.cap,flow));
if (tmp)
{
e.cap -= tmp;
es[G[u][i]^1].cap += tmp;
return tmp;
}
}
}
return 0;
}
int dinic()
{
int ans = 0;
while (bfs())
{
int tmp;
memset(cur,0,sizeof(cur));
while (tmp = dfs(S,inf)) ans += tmp;
}
return ans;
}
bool meet(int lim)
{
for (int i = 0;i < N;i++) G[i].clear();
es.clear();
for (int i = 1;i <= n;i++)
{
if (a[i] <= 0) continue;
adde(S,i,a[i]);
adde(i,i+n,inf);
}
int sum = 0;
for (int i = 1;i <= n;i++)
{
if (a[i] <= 0) continue;
if (is[i])
{
sum += lim;
adde(i+n,T,lim);
}
else
{
sum++;
adde(i+n,T,1);
}
}
for (int i = 1;i <= n;i++)
{
for (int j = 1;j <= n;j++)
{
if (i == j) continue;
if (a[i] <= 0 || a[j] <= 0) continue;
if (s[i][j] == 'Y')
{
adde(i,j+n,inf);
}
}
}
int ans = dinic();
return ans >= sum;
}
int main()
{
int t;
scanf("%d",&t);
while (t--)
{
memset(is,0,sizeof is);
scanf("%d",&n);
S = 0;
T = 2 * n + 1;
for (int i = 1;i <= n;i++)
{
scanf("%d",&a[i]);
}
for (int i = 1;i <= n;i++)
{
scanf("%s",s[i]+1);
}
for (int i = 1;i <= n;i++)
{
for (int j = 1;j <= n;j++)
{
if (a[i] > 0 && a[j] <= 0)
{
if (s[i][j] == 'Y') is[i] = true;
}
}
}
int l = 1,r = 1e5;
while (r - l > 1)
{
int mid = (l + r) >> 1;
if (meet(mid)) l = mid;
else r = mid;
}
while (meet(l+1)) l++;
printf("%d\n",l);
}
return 0;
}
/*
3
1 1 0
NYN
YNY
NYN
7
7 3 3 2 0 0 5
NYNNNNN
YNYYNNN
NYNYYNN
NYYNYNN
NNYYNNN
NNNNNNY
NNNNNYN
4
2 2 0 0
NNYN
NNNY
YNNN
NYNN
*/
uva 12264 Risk的更多相关文章
- UVA - 12264 Risk (二分,网络流)
题意比较坑,移动完以后的士兵不能再次移动,不然样例都过不了... 最小值最大满足决策单调性所以二分答案,跑网络流验证是否可行. 这种题重点在建图,为了保证只移动一次,拆点,一个入点一个出点,到了出点的 ...
- Risk UVA - 12264 拆点法+最大流+二分 最少流量的节点流量尽量多。
/** 题目:Risk UVA - 12264 链接:https://vjudge.net/problem/UVA-12264 题意:给n个点的无权无向图(n<=100),每个点有一个非负数ai ...
- 紫书 习题 11-10 UVa 12264 (二分答案+最大流)
书上写的是UVa 12011, 实际上是 12264 参考了https://blog.csdn.net/xl2015190026/article/details/51902823 这道题就是求出一种最 ...
- UVa 567: Risk
这是一道很简单的图论题,只要使用宽度优先搜索(BFS)标记节点间距离即可. 我的解题代码如下: #include <iostream> #include <cstdio> #i ...
- UVA 567 Risk【floyd】
题目链接: option=com_onlinejudge&Itemid=8&page=show_problem&problem=508">https://uva ...
- LA 3353 最优巴士线路设计
给出一个 n 个点的有向图,找若干个圈,是的每个结点恰好属于一个圈.要求总长度尽量小. 三倍经验题 Uva 12264,HDU 1853 这题有两种解法,一是匹配: 每个点只在一个圈中,则他有唯一的前 ...
- uva oj 567 - Risk(Floyd算法)
/* 一张有20个顶点的图上. 依次输入每个点与哪些点直接相连. 并且多次询问两点间,最短需要经过几条路才能从一点到达另一点. bfs 水过 */ #include<iostream> # ...
- UVA - 1025 A Spy in the Metro[DP DAG]
UVA - 1025 A Spy in the Metro Secret agent Maria was sent to Algorithms City to carry out an especia ...
- UVa12264 Risk(最大流)
题目 Source https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_pr ...
随机推荐
- Shell脚本无限调用
#! /bin/bash # this shell can run endlessfully echo "i love you ! " sh ./run 通过echo来显示了无限调 ...
- 配置glance使用ceph作为后端存储
在ceph监视器上执行 1.创建pool池 为glance服务创建pool池(因为我只有一个OSD节点,所以要将副本数设置为1) ceph osd pool create glance-images ...
- SSDsim
1.官网 http://storage.hust.edu.cn/SSDsim/ 2.博客 http://www.tuicool.com/articles/U77n2i http://blog.sina ...
- [转帖]PKI技术原理(收集 整理 归纳)
PKI技术原理(收集 整理 归纳) https://blog.51cto.com/3layer/20430 总结归纳的 灰常好.. 7layer关注8人评论39427人阅读2007-03-14 11: ...
- SQLServer学习之表的操作
SQLServer学习之表的操作 关系数据库通常包含多个表.数据库实际上是表的集合,数据库的数据或者信息都是存储在表中的.表是对数据进行存储和操作的一种逻辑结构,每一个表都代表一个对用户意义的对象. ...
- sqarkSQL hiveSql
查看数据库 show databases; 进入数据库 use 库名 查看表 show tables: select * from 表名 hdfs传输spark sql查询 hive找到指定路径sql ...
- 对pdf 表单域 或文本框的操作---动态填充PDF 文件内容
前提:需要pdf模板:并且模板内容以pdf 文本框的形式填写 package com.test;import java.io.File;import java.io.FileOutputStream; ...
- PAT A1077 Kuchiguse (20)
晴神书中AC代码 #include <cstdio> #include <cstring> #include <iostream> using namespace ...
- Rsync快速入门实例(转)
三种主要数据传输方式 单主机本地目录间数据传输(类似cp) Local: rsync [OPTION...] SRC... [DEST] 借助rcp,ssh等通道来传输数据(类似scp) Access ...
- Win32汇编常用算数指令
汇编语言(assembly language)是一种用于电子计算机.微处理器.微控制器或其他可编程器件的低级语言,亦称为符号语言.在汇编语言中,用助记符(Mnemonics)代替机器指令的操作码,用地 ...