Cow Contest
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 5989   Accepted: 3234

Description

N (1 ≤ N ≤ 100) cows, conveniently numbered 1..N, are participating in a programming contest. As we all know, some cows code better than others. Each cow has a certain constant skill rating that is unique among the competitors.

The contest is conducted in several head-to-head rounds, each between two cows. If cow A has a greater skill level than cow B (1 ≤ A ≤ N; 1 ≤ B ≤ NA ≠ B), then cow A will always beat cow B.

Farmer John is trying to rank the cows by skill level. Given a list the results of M (1 ≤ M ≤ 4,500) two-cow rounds, determine the number of cows whose ranks can be precisely determined from the results. It is guaranteed that the results of the rounds will not be contradictory.

Input

* Line 1: Two space-separated integers: N and M
* Lines 2..M+1: Each line contains two space-separated integers that describe the competitors and results (the first integer, A, is the winner) of a single round of competition: A and B

Output

* Line 1: A single integer representing the number of cows whose ranks can be determined
 

Sample Input

5 5
4 3
4 2
3 2
1 2
2 5

Sample Output

2

题意:是给你n个人,m组关系
每次关系输入A,B。表示A比B屌
思路:Flyod跑一发,然后判断是否这个人和其他人的关系都已经确定,如果都已经确定,那么就直接ans++就好了!
//qscqesze
#include <cstdio>
#include <cmath>
#include <cstring>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
#include <sstream>
#include <queue>
#include <typeinfo>
#include <fstream>
#include <map>
typedef long long ll;
using namespace std;
//freopen("D.in","r",stdin);
//freopen("D.out","w",stdout);
#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
#define maxn 105
#define eps 1e-9
const int inf=0x7fffffff; //无限大
int g[maxn][maxn];
int main()
{
int n,m;
while(cin>>n>>m)
{
int a,b;
for(int i=;i<m;i++)
{
cin>>a>>b;
g[a][b]=;
}
for(int k=;k<=n;k++)
{
for(int i=;i<=n;i++)
{
for(int j=;j<=n;j++)
{
if(g[i][k]&&g[k][j])
g[i][j]=;
}
}
}
int ans=;
for(int i=;i<=n;i++)
{
int flag=;
for(int j=;j<=n;j++)
{
if(i==j)
continue;
if(g[i][j]==&&g[j][i]==)
{
flag=;
break;
}
}
if(flag)
ans++;
}
cout<<ans<<endl;
}
}
												

最新文章

  1. iOS--NSBundle理解
  2. C#、不说再见
  3. sql 查询执行的详细时间profile
  4. java环境基础步骤 jdk tomcat eclipse
  5. 将SQL SERVER数据库改成MySql
  6. Google推荐的图片加载库Glide介绍
  7. android AsyncTask 只能在线程池里单个运行的问题
  8. python 练习 16
  9. java 连接池的简单实现
  10. Ora-12154:无法解析连接字符串
  11. java数据结构--线性结构
  12. [Redux] Reducer Composition with combineReducers()
  13. Android(java)学习笔记258:JNI之hello.c(c代码功能实现)指针语法解析
  14. 用特殊字体来实现矢量ICON
  15. JavaScript编程:浏览器对象模型BOM
  16. Spring声明式事务配置中propagation各个值的意思
  17. Twisted源码分析系列01-reactor
  18. MapReduce执行过程
  19. 浅谈IT企业挑选技术人员招聘几个要点
  20. TensorFlow入门(一)

热门文章

  1. mysql5.7半自动同步设置【转】
  2. 修改类不用重启Tomcat加载整个项目
  3. linux文件管理 -&gt; 系统压缩打包
  4. 你的组织使用了 windows defender 应用程序控制来阻止此应用
  5. 课堂实验-模拟实现Sort
  6. 大数据统计分析平台之三、Kibana安装和使用
  7. Sourcetree配置ssh密钥 - git图形化工具(二)
  8. **iOS发JSON请求中字符串加转义,返回的JSON去转义
  9. GridLayout 计算器
  10. Zookeeper学习笔记-概念介绍