【poj2699】 The Maximum Number of Strong Kings

http://poj.org/problem?id=2699 (题目链接)

题意

  给出1张有向完全图。U->V表示U可以打败V并得一分。如果一个人的得分最高,或者他打败所有比自己得分高的人,那么此人就是king。现在按顺序给出每个人的得分,求最多可能有多少个king同时存在。

Solution

  想了半天贪心,然而得分相等的情况真的很不好处理。。真的没想到是最大流。。左转题解:http://blog.csdn.net/sdj222555/article/details/7797257

  考虑这样建图的正确性。

  借用题解的example,假设序列长成这样:1....i......n。那么i不是king有以下这几种情况

  1.i的得分少于得分比它大的人的个数

  这种情况显然i不可能赢所有得分比它大的人,那么这如何在我们所构建的图上体现呢?

  对于i与得分比i大的人的比赛,从i连向它们,显然,这些边不可能满流,因为i不可能赢这么多场,于是不成立。

  2.n已经无法给予i赢的机会

  因为得分比i大的人想要成为King,必须赢得得分比他们更大的人n,而n能够输的场次是有限的。

  如果从i连向(i,n)的比赛使i强行赢得胜利,会使得边(s,n)不满流,于是不成立。

  也许还有别的情况我没考虑到,唉最近思维僵化,没救了,如果有补充请提出╮(╯_╰)╭

细节

  多组数据注意初始化,为什么我还是要16ms。。自带常数。。

代码

// poj2699
#include<algorithm>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<queue>
#define LL long long
#define inf 2147483640
#define Pi acos(-1.0)
#define free(a) freopen(a".in","r",stdin),freopen(a".out","w",stdout);
using namespace std;

const int maxn=1010;
struct edge {int to,next,w;}e[maxn];
int head[maxn],d[maxn],f[20][20],a[maxn],Max;
int n,m,ans,cnt=1,es,et;
char ch[maxn];

void link(int u,int v,int w) {
	e[++cnt]=(edge){v,head[u],w};head[u]=cnt;
	e[++cnt]=(edge){u,head[v],w};head[v]=cnt;
}
void read() {
	gets(ch);
	n=m=Max=0;int l=strlen(ch);
	for (int i=0;i<l;i++) if (ch[i]>=‘0‘ && ch[i]<=‘9‘) {
			m=m*10+ch[i]-‘0‘;
			if (i==l || ch[i+1]<‘0‘ || ch[i+1]>‘9‘) a[++n]=m,m=0,Max=max(Max,a[n]);
		}
	for (int i=1;i<=n;i++)
		for (int j=i+1;j<=n;j++) f[i][j]=f[j][i]=++m;
	es=n+m+1;et=es+1;
}
void Init() {
	cnt=ans=0;
	memset(head,0,sizeof(head));
}
bool bfs() {
	memset(d,-1,sizeof(d));
	queue<int> q;q.push(es);d[es]=0;
	while (!q.empty()) {
		int x=q.front();q.pop();
		for (int i=head[x];i;i=e[i].next) if (e[i].w && d[e[i].to]<0) {
				d[e[i].to]=d[x]+1;
				q.push(e[i].to);
			}
	}
	return d[et]>0;
}
int dfs(int x,int f) {
	if (x==et || f==0) return f;
	int used=0,w;
	for (int i=head[x];i;i=e[i].next) if (e[i].w && d[e[i].to]==d[x]+1) {
			w=dfs(e[i].to,min(e[i].w,f-used));
			used+=w;
			e[i].w-=w;e[i^1].w+=w;
			if (used==f) return used;
		}
	if (!used) d[x]=-1;
	return used;
}
void Dinic() {
	while (bfs()) ans+=dfs(es,inf);
}
int main() {
	int T;scanf("%d",&T);getchar();
	while (T--) {
		read();
		for (int s=1;s<=n;s++) {
			Init();
			for (int i=1;i<=n;i++) link(es,i,a[i]);
			for (int i=1;i<s;i++)
				for (int j=i+1;j<=n;j++) link(i,f[i][j]+n,1),link(j,f[i][j]+n,1);
			for (int i=s;i<=n;i++)
				for (int j=i+1;j<=n;j++) {
					link(i,f[i][j]+n,1);
					if (a[i]==Max) link(j,f[i][j]+n,1);
				}
			for (int i=n+1;i<=n+m;i++) link(i,et,1);
			Dinic();
			if (ans==m) {printf("%d\n",n-s+1);break;}
		}
	}
	return 0;
}

  

时间: 2024-10-17 04:41:51

【poj2699】 The Maximum Number of Strong Kings的相关文章

【POJ2699】The Maximum Number of Strong Kings

Description A tournament can be represented by a complete graph in which each vertex denotes a player and a directed edge is from vertex x to vertex y if player x beats player y. For a player x in a tournament T, the score of x is the number of playe

【POJ2699】The Maximum Number of Strong Kings(二分,最大流)

题意: 有n个队伍,两两都有比赛 知道最后每支队伍获胜的场数 求最多有多少队伍,他们战胜了所有获胜场数比自己多的队伍,这些队伍被称为SK N<=50 思路:把每个队伍和它们两两之间的比赛都当做点,判断最大流是否满流即可 S-->队伍 a[i] 队伍 -->比赛 1 比赛-->T 1 i号队伍是SK:如果j为SK且a[i]>a[j]则j必胜,如果a[i]<a[j]则i必胜 只要必胜者向他们之间的比赛连1条边即可 如果j不为SK,胜负未知,两个点都向他们之间的比赛连1条边

【POJ2699】The Maximum Number of Strong Kings 枚举(二分)+网络流check、

题意: 有n个人,两两都有比赛,然后有每个人的胜场次数. 规定把比自己胜场次数多的人都赢了的就是strong(weak) king (vegetables) (why i say that they are so weak? :****,how do you think a person who beat the heroes but defeated at the dogface? ) 让你安排比赛,问最多有多少个strongking? 题解: 首先(有人说)能证如果有k个sk,那么一定可以是

【POJ】【2699】The Maximum Number of Strong Kings

网络流/最大流/二分or贪心 题目大意:有n个队伍,两两之间有一场比赛,胜者得分+1,负者得分+0,问最多有几只队伍打败了所有得分比他高的队伍? 可以想到如果存在这样的“strong king”那么一定是胜场较多的队伍……(比他赢得多的队伍num少,而他总共赢得场数times足够多,至少得满足times>=num吧?) 那么我们可以二分/枚举k,表示胜场前k多的队伍是stong king.(这题范围小,只有10支队伍,如果队伍较多我们就需要二分了……) 最最丧心病狂的是!!!出题人TMD卡读入!

解题报告 之 POJ2699 The Maximum Number of Strong Kings

解题报告 之 POJ2699 The Maximum Number of Strong Kings Description A tournament can be represented by a complete graph in which each vertex denotes a player and a directed edge is from vertex x to vertex y if player x beats player y. For a player x in a t

POJ2699 The Maximum Number of Strong Kings

Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2102   Accepted: 975 Description A tournament can be represented by a complete graph in which each vertex denotes a player and a directed edge is from vertex x to vertex y if player x beats

POJ2699_The Maximum Number of Strong Kings

这题目,,,真是...诶.坑了好久. 给一个有向图.U->V表示U可以打败V并得一分. 如果一个人的得分最高,或者他打败所有比自己得分高的人,那么此人就是king. 现在给出每个人的得分,求最多可能有多少个king同时存在. 可以证明,如果有k个人是king,那么至少有一种分配方案使得这k个king都是分数最高的那k个人.(证明略,想想就知道了) 于是我们可以开始枚举从i个人开始,后面的都是king. 除了源点和汇点以外,还有两种点,一种表示人(n),一种表示比赛(n*(n/2)/2). 如果一

POJ 2699 The Maximum Number of Strong Kings Description

The Maximum Number of Strong Kings Description A tournament can be represented by a complete graph in which each vertex denotes a player and a directed edge is from vertex x to vertex y if player x beats player y. For a player x in a tournament T, th

The Maximum Number of Strong Kings

poj2699:http://poj.org/problem?id=2699 题意:n个人,进行n*(n-1)/2场比赛,赢一场则得到一分.如果一个人打败了所有比他分数高的对手,或者他就是分数最高的,那么他就是strong kind.现在给你每个人的得分,问你最多有多少个strong kind. 题解:自己没有思路,看了别人的题解,才勉强理解了.首先,肯定让得分高的成为strong king,因为概率比较大,然后就是怎建图了.假如,我们已经知道了,有m个strong kind,那么这m个人一定是