摘要:
"题目链接" 解题思路 简单的DAG上DP即可。 参考程序 c include using namespace std; const int Maxn = 100010; const int Maxm = 200010; struct edge { int To, Next; }; edge Edg 阅读全文
摘要:
"题目链接" 问题分析 题目给了充足的暗示,我们只需要二分答案然后跑匈牙利即可。~~要相信匈牙利的速度~~ 参考程序 阅读全文