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 ≤ N; A ≠ 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.
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
Line 1: A single integer representing the number of cows whose ranks can be determined
5 5 4 3 4 2 3 2 1 2 2 5
2
POJ:https://vjudge.net/problem/POJ-3660 HUST:https://vjudge.net/problem/HUST-1037 HRBUST:https://vjudge.net/problem/HRBUST-1018
图论,传递闭包
给出n只奶牛的m次决斗结果,要求现在能确定多少只奶牛的排名
自己一开始yy了好久割点啥的 先看一下题目中要求的,如果一只牛与其他牛确定了的关系==n-1,则说明这只牛的排名是确定的,即该牛打赢的牛的数量+该牛打输的牛的数量==n-1时此牛的排名是确定的。 但是根据题目中给出的m对决斗结果不能推出所有的情况,这时我们就要利用传递性,牛A打赢了牛B,牛B打赢了牛C,那么牛A也就可以打赢牛C,这个我们可以用类似Floyed算法来解(似乎这个算法有个具体的名称,但博主这里忘记了)。 注意:HRBUST有多组数据
转载于:https://www.cnblogs.com/SYCstudio/p/7227688.html
相关资源:JAVA上百实例源码以及开源项目