POJ 1815 Friendship (Dinic)
| Time Limit: 2000MS | Memory Limit: 20000K | |
| Total Submissions: 11429 | Accepted: 3173 |
Description
1. A knows B's phone number, or
2. A knows people C's phone number and C can keep in touch with B.
It's assured that if people A knows people B's number, B will also know A's number.
Sometimes, someone may meet something bad which makes him lose touch with all the others. For example, he may lose his phone number book and change his phone number at the same time.
In this problem, you will know the relations between every two among N people. To make it easy, we number these N people by 1,2,...,N. Given two special people with the number S and T, when some people meet bad things, S may lose touch with T. Your job is to compute the minimal number of people that can make this situation happen. It is supposed that bad thing will never happen on S or T.
Input
You can assume that the number of 1s will not exceed 5000 in the input.
Output
If there is more than one solution, we give every solution a score, and output the solution with the minimal score. We can compute the score of a solution in the following way: assume a solution is A1, A2, ..., At (1 <= A1 < A2 <...< At <=N ), the score will be (A1-1)*N^t+(A2-1)*N^(t-1)+...+(At-1)*N. The input will assure that there won't be two solutions with the minimal score.
Sample Input
3 1 3
1 1 0
1 1 1
0 1 1
Sample Output
1
2
思路:
感谢llw大佬的神奇优化!!!!
耗时两天,终于AC了,总算是证明了自己的算法没有错误。
网上遍地都是拆点的题解,奈何我实在是太弱了,弱到无法想象的地步,实在是看不懂拆点应该要怎么拆,所以我被逼无奈选择了暴力。
那就是,限制一次dfs只能跑出容量为1的流,并将这条流上的所有点标记为不可用,直到一次Dinic结束。
以此取代拆点的操作,是完全可行的,其他的操作都大体相同
终于终于,体会到了AC的快乐,看着题解写出来的题,渐渐地成为了我自闭的根源
代码
邻接矩阵
#include<iostream>
#include<cstring>
#include<queue>
#include<cstdio>
using namespace std;
int mp[300][300];
int n,s,t;
const int inf = 2100000000;
int vis[400],num[400];
bool book[400]; struct edge
{
int u,v,next,w;
}e[400010];
int Head[400010],cur;
int ans[400010]; void add(int x,int y)
{ e[cur].u=x;
e[cur].v=y;
e[cur].next=Head[x];
e[cur].w=1;
Head[x]=cur;
cur++;
e[cur].u=y;
e[cur].v=x;
e[cur].next=Head[y];
e[cur].w=0;
Head[y]=cur;
cur++;
} bool bfs()
{
memset(vis,0,sizeof(vis));
for(int i=1;i<=n;i++){
num[i]=Head[i];
}
vis[s]=1;
queue<int>q;
q.push(s);
int r=0;
while(!q.empty()){
int u=q.front();
q.pop();
int k=Head[u];
while(k!=-1){
if(!book[e[k].v]&&!vis[e[k].v]&&e[k].w){
vis[e[k].v]=vis[u]+1;
q.push(e[k].v);
}
k=e[k].next;
}
}
return vis[t];
} int dfs(int u)
{
if(u==t){return 1;} int &k=num[u];
while(k!=-1){
if(!book[e[k].v]&&vis[e[k].v]==vis[u]+1&&e[k].w){
int d=dfs(e[k].v);
e[k].w-=d;
e[k^1].w+=d;
if(d>0){book[u]=true;return 1;}
}
k=e[k].next;
}
return 0;
} void build()
{
cur=0;
memset(Head,-1,sizeof(Head));
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
if(mp[i][j]) add(i,j);
}
}
} int Dinic(int y)
{
memset(book,0,sizeof(book));
book[y]=1;
int ans=0;
while(bfs()){
int f;
while((f=dfs(s))>0){//llw大佬太强了orz orz orz
ans+=f;
}
}
return ans;
} inline void rebuild(int tt)
{
for(int i=0;i<=cur;i+=2){
if(e[i].v==tt||e[i].u==tt){e[i].w=e[i^1].w=0;}
else if(e[i^1].w!=0){
e[i].w=1;
e[i^1].w=0;
}
} }
int main()
{
scanf("%d%d%d",&n,&s,&t);
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
scanf("%d",&mp[i][j]);
}
}
if(mp[s][t]==1){printf("NO ANSWER!\n");return 0;}
build();
int maxx=Dinic(0);
rebuild(0);
int num=0;
for(int i=1;i<=n;i++){
if(i==s||i==t){continue;}
int y=Dinic(i);
if(y<maxx){
ans[++num]=i;
maxx=y;
if(maxx==0){break;}
rebuild(i);
}
else rebuild(0);
}
if(num==0){printf("0\n");return 0;}
printf("%d\n",num);
for(int i=1;i<=num;i++){
if(i!=1){printf(" ");}
printf("%d",ans[i]);
}
printf("\n");
}
POJ 1815 Friendship (Dinic)的更多相关文章
- POJ 1815 Friendship (Dinic 最小割)
Friendship Time Limit: 2000MS Memory Limit: 20000K Total Submissions: 8025 Accepted: 2224 Descri ...
- POJ 1815 Friendship(字典序最小的最小割)
Friendship Time Limit: 2000MS Memory Limit: 20000K Total Submissions: 10744 Accepted: 2984 Descr ...
- POJ 1815 Friendship(最大流最小割の字典序割点集)
Description In modern society, each person has his own friends. Since all the people are very busy, ...
- POJ - 1815 Friendship (最小点割集)
(点击此处查看原题) 题目分析 题意:有n个人,编号记为1~n,n个人之间可能有人可以互相联系,如果A能和B联系,那么至少满足这两种情况之一:(1)A知道B的电话(2)A可以和C联系,并且C可以和B联 ...
- POJ 1815 Friendship(最小割+字典序输出割点)
http://poj.org/problem?id=1815 题意: 在现代社会,每个人都有自己的朋友.由于每个人都很忙,他们只通过电话联系.你可以假定A可以和B保持联系,当且仅当:①A知道B的电话号 ...
- POJ 3281 Dining (网络流)
POJ 3281 Dining (网络流) Description Cows are such finicky eaters. Each cow has a preference for certai ...
- POJ 2431 Expedition(探险)
POJ 2431 Expedition(探险) Time Limit: 1000MS Memory Limit: 65536K [Description] [题目描述] A group of co ...
- POJ 3414 Pots(罐子)
POJ 3414 Pots(罐子) Time Limit: 1000MS Memory Limit: 65536K Description - 题目描述 You are given two po ...
- POJ 1847 Tram (最短路径)
POJ 1847 Tram (最短路径) Description Tram network in Zagreb consists of a number of intersections and ra ...
随机推荐
- pip install MySQL-python 失败
1. EnvironmentError: mysql_config not found原因:/usr/bin/mysql_config没有次文件,要安装libmysqlclient-dev, apt ...
- 一、MyCat的搭建
一.什么是mycat 简单直接点就是,MyCat其实就是一个数据库的中间件!一般我们都是app直接到数据库!有了MyCat以后,就是app到MyCat然后再访问数据库. mycat是个中间件,它负责连 ...
- 转载 --mysql函数大全
控制流函数 IFNULL(expr1,expr2) 如果expr1不是NULL,IFNULL()返回expr1,否则它返回expr2.IFNULL()返回一个数字或字符串值,取决于它被使用的上下文环境 ...
- The Bug and Exception of Hibernate
1: hibernate4.3.5 的@oneToOne注解有Bug,建议不使用该版本,或者使用该版本不使用@table annotation. 2:今天在用hibernate4.2.13的时候, ...
- Ajax与CORS通信
处理跨域的主要方法 JSONP CORS 本文主要讨论CORS解决Ajax因为浏览器同源策略不能跨域请求数据的问题. 1. JSONP JSONP跨域可以参考下面这篇博客 JSONP跨域 2. COR ...
- How to recovery compiz
sudo apt install compizconfig-settings-manager dconf reset -f /org/compiz/ setsid unity dconf list / ...
- loj6270
#6270. 数据结构板子题 sol:对于一个询问L,R,Limit,答案就是所有长度小于R-l+1的线段-长度小于Limit的线段-左端点在L左边的线段-右端点在R右边的线段,求这个东西 后面两个东 ...
- POJ 2823 滑动窗口 单调队列
https://vjudge.net/problem/POJ-2823 中文:https://loj.ac/problem/10175 题目 给一个长度为 $N$ 的数组,一个长为 $K$ 的滑动窗体 ...
- Bash 5.0 发布及其新功能
导读 邮件列表证实最近发布了 Bash-5.0.而且,令人兴奋的是它还有新的功能和变量.如果你一直在使用 Bash 4.4.XX,那么你一定会喜欢 Bash 的第五个主要版本. 第五个版本侧重于新的 ...
- YUV格式与RGB格式
YUV420介绍: YUV420格式是指,每个像素都保留一个Y(亮度)分量,而在水平方向上,不是每行都取U和V分量,而是一行只取U分量,则其接着一行就只取V分量,以此重复(即4:2:0, 4:0:2, ...