Asuka158
Asuka158
全部文章
题解
新知识(5)
归档
标签
去牛客网
登录
/
注册
鬼頭 明里 の 博客
我把温柔和可爱都设置成了仅你可见
全部文章
/ 题解
(共1篇)
POJ3275 Ranking the Cows(floyd传递闭包)
POJ3275 Ranking the Cows 题意:有N个数字,已经比较了M对(x,y),其中x>y, 问至少再需要比较多少对数字,就能把N个数按大小有序的排列起来 分析:如果x>y,就在x和y之间连一条单向边,然后用floyd算法(floyd传递闭包), AC代码: #includ...
c++
图论
Floyd
STL
ACM
bitset
2021-03-08
1
664