Problem 1124 - Football Coach

Description
It is not an easy job to be a coach of a football team. The season is almost over, only a few matches are left to play. All of sudden the team 
manager comes to you and tells you bad news: the main sponsor of your club is not happy with your results and decided to stop sponsoring your 
team, which probably means the end of your club. The sponsor's decision is final and there is no way to change it unless... unless your team 
miraculously wins the league. 
The manager left you in deep thought. If you increase the number of practices and offer players a generous bonus for each match, you may be 
able to win all the remaining matches. Is that enough? You also have to make sure that teams with many points lose against teams with few 
points so that in the end, your team will have more points than any other team. You know some of the referees and can bribe them to manipulate 
the result of each match. But first you need to figure out how to manipulate the results and whether it is possible at all. 
There are N teams numbered 1 through N, your team has the number N. The current number of points of each team and the list of remaining 
matches are given. Your task is to find out whether it is possible to manipulate each remaining match so that the team N will finish with 
strictly more points than any other team. If it is possible, output "YES", otherwise, output "NO". In every match, the winning team gets 2 
points, the losing team gets 0. If the match ends with a draw, both teams get 1 point. 
Input
There will be multiple test cases. Each test case has the following form: The first line contains two numbers N(1 <= N <= 100) and M(0 <= M <= 
1000). The next line contains N numbers separated by spaces giving the current number of points of teams 1, 2, ..., N respectively. The 
following M lines describe the remaining matches. Each line corresponds to one match and contains two numbers a and b (a not equal to b, 1 <= 
a,b <= N) identifying the teams that will play in the given match. There is a blank line after each test case.
Output
For each test case, output "YES" or "NO" to denote whether it's possible to manipulate the remaining matches so that the team N would win 
the league.
Sample Input
5 8
2 1 0 0 1
1 2
3 4
2 3
4 5
3 1
2 4
1 4
3 5
5 4
4 4 1 0 3
1 3
2 3
3 4
4 5
Sample Output
YES
NO
Hint
The problem is so hard that even I have told you the method here is "maximum network flow", you can't solve it. You can have a try, but don?t waste too much time here if you are not perfect at modeling a network.
Source
2006 Team Select Round 3
 
题解:
先将所有和n有关的比赛让n赢
然后再每一场比赛与S相连容量为2
S与有关的队伍相连,容量为2
队伍与T相连容量为Val[n]-Val[i]-1 保证每一个队伍的流量不超过Val[n];
如果流量=2*除去与n有关比赛场数 代表所有的比赛都比完了,且没有一个队伍Val>=Val[n] 输出YES
反之 如果< 除去与n有关比赛场数 代表比赛还没有比完 但如果再流就会导致Val>=Val[n] 输出NO
代码:
 #include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<cstdlib>
using namespace std;
const int N=,M=,INF=;
int n,m,T;
int val[N];
int gi(){
int str=;char ch=getchar();
while(ch>''||ch<'')ch=getchar();
while(ch>='' && ch<='')str=str*+ch-'',ch=getchar();
return str;
}
struct Lin{
int next,to,dis;
}a[M*];
int head[M],num=;
void init(int x,int y,int z){
a[++num].next=head[x];
a[num].to=y;
a[num].dis=z;
head[x]=num;
a[++num].next=head[y];
a[num].to=x;
a[num].dis=;
head[y]=num;
}
int dep[M],q[M],cnt;
bool bfs()
{
memset(dep,,sizeof(dep));
q[]=;dep[]=;
int t=,sum=,x,u;
while(t!=sum)
{
x=q[++t];
for(int i=head[x];i;i=a[i].next){
u=a[i].to;
if(dep[u] || a[i].dis<=)continue;
q[++sum]=u;dep[u]=dep[x]+;
}
}
if(dep[T])return true;
return false;
}
int dfs(int x,int flow)
{
if(x==T || !flow)return flow;
int tot=,u,tmp;
for(int i=head[x];i;i=a[i].next){
u=a[i].to;
if(dep[u]!=dep[x]+ || a[i].dis<=)continue;
tmp=dfs(u,min(flow,a[i].dis));
a[i].dis-=tmp;
a[i^].dis+=tmp;
flow-=tmp;
tot+=tmp;
if(!flow)break;
}
return tot;
}
bool Flow()
{
int tot=,a;
while(bfs()){
a=dfs(,INF);
while(a)tot+=a,a=dfs(,INF);
}
return tot==cnt*;
}
void work()
{
T=n+m;cnt=m;
int x,y;
for(int i=;i<=n;i++)val[i]=gi();
for(int i=;i<=m;i++){
x=gi();y=gi();
if(x==n || y==n)val[n]+=,cnt--;
else{
init(,i,);
init(i,x+m,);init(i,y+m,);
}
}
for(int i=;i<n;i++){
init(i+m,T,val[n]-val[i]-);
}
for(int i=;i<n;i++)if(val[i]>=val[n]){
printf("NO\n");
return ;
}
if(Flow())printf("YES\n");
else printf("NO\n");
}
void Clear()
{
num=;
memset(head,,sizeof(head));
}
int main()
{
while(~scanf("%d%d",&n,&m)){
work();
Clear();
}
}

最新文章

  1. 序列化模块之 pickle 和 json
  2. javascript this在事件中的应用
  3. 苹果Mac隐藏壁纸在哪里?Mac隐藏壁纸查找教程
  4. ofbiz进击 第六节。 --OFBiz配置之[widget.properties] 配置属性的分析
  5. [转]change the linux startup logo
  6. ie7兼容性 绝对定位元素之间的遮盖问题
  7. 关于js中alert弹出窗口换行!
  8. python之路——爬虫实例
  9. 左查询left join on简单总结
  10. volatile适用场景之二
  11. pandas文件写入读取操作
  12. centos关机、重启、图形界面与命令行界面切换命令
  13. JAVAFX开发桌面应用
  14. IIS7 UNC File caching issue
  15. ubuntu14.0安装ITK的步骤
  16. JavaScript從剪切板中獲取圖片並在光標處插入
  17. Android 之数据传递小结
  18. git fork同步是什么意思?
  19. jsoup、xpath教程
  20. CSS3知识之阴影box-shadow

热门文章

  1. socketpair创建双向通信的管道(全双工通信)
  2. 原始的Ajax方法 (异步的 JavaScript 和 XML -- (Extensible Markup Language 可扩展标记语言))
  3. WebDriverException : Missing &#39;type&#39; parameter
  4. windows 7 netsh wlan命令连接wifi
  5. 看到一个对CAP简单的解释
  6. BizTalk Server 2010高可用方案
  7. JS笔记(一)
  8. Centos6.9minimal安装图形化界面
  9. Java课后练习
  10. python github