POJ-3275:Ranking the Cows(Floydbitset)
Posted alphawa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ-3275:Ranking the Cows(Floydbitset)相关的知识,希望对你有一定的参考价值。
Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 3301 | Accepted: 1511 |
Description
Each of Farmer John‘s N cows (1 ≤ N ≤ 1,000) produces milk at a different positive rate, and FJ would like to order his cows according to these rates from the fastest milk producer to the slowest.
FJ has already compared the milk output rate for M (1 ≤ M ≤ 10,000) pairs of cows. He wants to make a list of C additional pairs of cows such that, if he now compares those C pairs, he will definitely be able to deduce the correct ordering of all N cows. Please help him determine the minimum value of C for which such a list is possible.
Input
Lines 2..M+1: Two space-separated integers, respectively: X and Y. Both X and Y are in the range 1...N and describe a comparison where cow X was ranked higher than cow Y.
Output
Sample Input
5 5 2 1 1 5 2 3 1 4 3 4
Sample Output
3
Hint
概译:农夫有N头牛,他要给牛排名,他已经知道M对牛的相对排名(比如X>Y),求出他还需要知道多少对,就能准确地将所有牛排名。
输入:输入N,M。接下来的M行每行输入X,Y,代表X>Y。
思路:当任意两头牛都明确知道相对rank时,即可以准确排名,此时共须知n*(n-1)/2对。已给M对,再求出这M对所隐藏的排名共ans对(例:2>1,1>5是M对里给出的,则2>5是隐藏的一对),则n*(n-1)/2 - M - ans就是最后的输出。
可视为有向图,2>1则画出一条2指向1的边,用Floyd就可以完成对隐藏路径的连通。O(N3)复杂度较高,此题M(边数)较少,可以用枚举边的方式,输入时记录每个节点的入边和出边,Floyd时枚举每个转折点的入边和出边。
1 #include<cstdio> 2 #include<cstring> 3 #include<iostream> 4 #include<vector> 5 using namespace std; 6 7 int n,m,ans; 8 bool mp[1005][1005]; 9 vector<int>ru[1005],chu[1005]; 10 11 int main() 12 { 13 scanf("%d%d",&n,&m); 14 15 for (int i = 0; i < m; i++) 16 { 17 int a,b; 18 scanf("%d%d", &a, &b); 19 ru[b].push_back(a); 20 chu[a].push_back(b); 21 mp[a][b] = true; 22 } 23 24 for (int k = 1; k <= n; k++) 25 for (int a = 0; a < ru[k].size(); a++) 26 for (int b = 0; b < chu[k].size(); b++) 27 {//C++11的“int i:ru[k]”POJ貌似编译不过去 28 int i = ru[k][a]; 29 int j = chu[k][b]; 30 if(!mp[i][j]) 31 { 32 ru[j].push_back(i); 33 chu[i].push_back(j); 34 mp[i][j] = true; 35 ans++; 36 } 37 } 38 39 printf("%d ",(n-1)*n/2-m-ans); 40 41 return 0; 42 }
也可以使用STL容器bitset,它使得mp数组以二进制01串形式进行位运算,通常可以将复杂度除以64.使用详见代码:
1 #include<cstdio> 2 #include<bitset> 3 #include<iostream> 4 using namespace std; 5 6 const int maxn=1000+5; 7 int n,m,ans; 8 bitset<maxn>bit[maxn];//类似于上面那个方法的mp二维数组 9 10 int main() 11 { 12 scanf("%d%d",&n,&m); 13 14 for (int i = 0; i < m; i++) 15 { 16 int a,b; 17 scanf("%d%d",&a,&b); 18 bit[a].set(b);//将bit[a][b]设为1 19 } 20 21 for (int i = 1; i <= n; i++) 22 for (int j = 1; j <= n; j++) 23 if (bit[j][i])//这其实就是个暴力的Floyd 24 bit[j] |= bit[i];//或运算使得i中为1的点(即有向图中i指向的点),j也指向它 25 26 for (int i = 1; i <= n; i++) 27 for (int j = 1; j <= n; j++) 28 if (bit[i][j]) 29 ans++; 30 //这里的ans是枚举之后得到的所有边,已经Floyd处理过了,所以包括隐藏的 31 32 cout << n*(n-1)/2-ans << endl; 33 34 return 0; 35 }
以上是关于POJ-3275:Ranking the Cows(Floydbitset)的主要内容,如果未能解决你的问题,请参考以下文章
POJ3275 Ranking the Cows floyd的bitset优化
POJ3275:Ranking the Cows(Bitset加速floyd求闭包传递)
USACO 2007 “March Gold” Ranking the Cows