摘要: K. Color Graph 题意: 给定一个简单图,点个数 using namespace std; const int maxn=105; const int maxm=1e4+5; struct edge{ int u,v; }E[maxm]; int tot=0; void addedge( 阅读全文
posted @ 2019-11-25 22:27 UCPRER 阅读(1377) 评论(4) 推荐(1)