摘要: poj3342View Code 1 #include <map> 2 #include <stdio.h> 3 #include <vector> 4 #include <string> 5 #include <iostream> 6 using namespace std; 7 const int N=205; 8 vector<int > V[N]; 9 map<string,int> M;10 string child,father;11 int dp[N][2];12 bool ok[N][2];13 阅读全文
posted @ 2013-01-19 01:36 _sunshine 阅读(1211) 评论(0) 推荐(0) 编辑