2024年7月24日
摘要: 算法竞赛(二分) (上午) 图论+二分 P1462 //邻接表实现无边权 vector<int> g[maxn]; g[x]push_back(y); g[y]push_back(x); //边权实现 #include <vector> using namespace std; const int 阅读全文
posted @ 2024-07-24 09:34 Hoshino1 阅读(1) 评论(0) 推荐(0) 编辑