2011年5月28日
摘要: ~\Desktop\1947.cpp.html 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <vector> 5 using namespace std; 6 #define inf 10000000 7 int s[160],p[160],v[160],dp[160][160],n,m; 8 void check(int root) 9 {10 for(int i=0;i<=m;i++) dp[root][i] = inf;11 dp[ 阅读全文
posted @ 2011-05-28 20:01 eth0 阅读(146) 评论(0) 推荐(0) 编辑