摘要: 1 #include 2 3 using namespace std; 4 const int N=1005,M=105; 5 int n,m; 6 vector G[N]; 7 bool vis[N]; 8 int val[N]; 9 int dp[N][M][4]; 10 void init() 11 { 12 for(int i=1... 阅读全文
posted @ 2016-12-23 14:59 kimi9py 阅读(458) 评论(0) 推荐(0) 编辑