首页 技术 正文
技术 2022年11月24日
0 收藏 434 点赞 2,535 浏览 3414 个字

妖怪题目,做到现在:2017/8/19 – 1:41……

不过想想还是值得的,至少邻接矩阵型的Dinic算法模板get√

题目链接:http://poj.org/problem?id=1815

Time Limit: 2000MS Memory Limit: 20000K

Description

In modern society, each person has his own friends. Since all the people are very busy, they communicate with each other only by phone. You can assume that people A can keep in touch with people B, only if 
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

The first line of the input contains three integers N (2<=N<=200), S and T ( 1 <= S, T <= N , and S is not equal to T).Each of the following N lines contains N integers. If i knows j’s number, then the j-th number in the (i+1)-th line will be 1, otherwise the number will be 0.

You can assume that the number of 1s will not exceed 5000 in the input.

Output

If there is no way to make A lose touch with B, print “NO ANSWER!” in a single line. Otherwise, the first line contains a single number t, which is the minimal number you have got, and if t is not zero, the second line is needed, which contains t integers in ascending order that indicate the number of people who meet bad things. The integers are separated by a single space.

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

POJ 1815 – Friendship – [拆点最大流求最小点割集][暴力枚举求升序割点] – [Dinic算法模板 – 邻接矩阵型]

总的来说,就是求最小点割集,做法参考:

  http://www.cnblogs.com/lochan/p/3870697.html

  http://wugj03.blog.163.com/blog/static/1737650582011219115316710/

POJ 1815 – Friendship – [拆点最大流求最小点割集][暴力枚举求升序割点] – [Dinic算法模板 – 邻接矩阵型]

 #include<cstdio>
#include<cstring>
#include<queue>
#define in(x) x
#define out(x) x+n
#define MAX 500
#define INF 0x3f3f3f3f
using namespace std;
struct Dinic{
int s,t,nv;//源点、汇点、点总数
int c[MAX][MAX],f[MAX][MAX],lev[MAX];
bool vis[MAX];
void addedge(int from,int to,int cap)
{
c[from][to]=cap, f[from][to]=;
c[to][from]=, f[to][from]=;
}
bool bfs()
{
memset(vis,,sizeof(vis));
queue<int> q;
q.push(s);
vis[s]=;
lev[s]=;
while(!q.empty())
{
int u=q.front();q.pop();
for(int v=;v<=nv;v++)
{
if(!vis[v] && c[u][v]>f[u][v])//属于残存网络的边
{
lev[v]=lev[u]+;
q.push(v);
vis[v]=;
}
} }
return vis[t];
}
int dfs(int u,int aug)
{
if(u==t) return aug;
int res=aug,tmp;
for(int v=;v<=nv;v++)
{
if(lev[v]==lev[u]+ && c[u][v]>f[u][v])
{
tmp=dfs(v,min(aug,c[u][v]-f[u][v]));
f[u][v]+=tmp;
f[v][u]-=tmp;
aug-=tmp;
}
}
return res-aug;
}
int maxflow()
{
int res=;
while(bfs()) res+=dfs(s,INF);
return res;
}
}dinic; int n,S,T;
int main(){
int a;
scanf("%d%d%d",&n,&S,&T);
dinic.nv=n*, dinic.s=out(S), dinic.t=in(T);
for(int i=;i<=n;++i)
{
if(i!=dinic.s && i!=dinic.t) dinic.addedge(in(i),out(i),);
for(int j=,tmp;j<=n;j++)
{
scanf("%d",&tmp);
if(i!=j && tmp) dinic.addedge(out(i),in(j),INF);
}
}
if(dinic.c[dinic.s][dinic.t]){
puts("NO ANSWER!\n");
return ;
}
int ans=dinic.maxflow();
printf("%d\n",ans); for(int i=;i<=n && ans;i++)
{
if(i==dinic.s|| i==dinic.t || !dinic.f[in(i)][out(i)]) continue;
memset(dinic.f,,sizeof(dinic.f));
dinic.c[in(i)][out(i)]=;
if(dinic.maxflow()<ans)
{
ans--;
printf("%d ",i);
}
else dinic.c[in(i)][out(i)]=;
}
printf("\n");
return ;
}

PS.为了方便后续使用该模板,把它也封装在一个struct里了,1~63行为模板。

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,949
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,475
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,288
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,103
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,735
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,770