`
lilisalo
  • 浏览: 1109683 次
文章分类
社区版块
存档分类
最新评论

POJ 3660 floyd算法统计无关点个数

 
阅读更多
Cow Contest
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 3613 Accepted: 1911

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 cowA has a greater skill level than cow B (1 ≤ AN; 1 ≤BN; AB), then cow A will always beat cowB.

Farmer John is trying to rank the cows by skill level. Given a list the results ofM (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

Source

这道题的题题意很明了
    给定n位大牛,然后在给出他们的m个关系,(关系是A强于B)
然后输出能够确定能力排名的大牛个数
解释一下样例:
    按照题目所叙述可以画出一个网络图(路径就用A->B的单向路线)可以确定5是最弱的,而且还可以看到2只比5更强,所以倒数一二名是可以确定的,但是另外三个点,我们只知道4比3要强,但是不知道4和1的强弱关系,同理3和1也无法判断,所以样例输出2
我的思路:
这道题我写的很顺利,大概花了不到20分钟就AC了。。。用的是floyd算法
我们首先观察到数据规模比较小是100的,所以100^3是可以满足题意的,我们先用floyd算法求出最短路的矩阵path[i][j],然后通过这个矩阵依次判断每一个点A是否存在有和他完全没有关系的点即是说path[a][b]==-1且path[b][a]==-1,最后统计这种点的数量用n减去就可以了
我的代码;

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics