摘要: 题目链接感觉和区间DP很类似,觉得还挺简单的,难得1Y,以前的时候直接没思路。。。 1 #include <cstdio> 2 #include <cstring> 3 #include <queue> 4 #include <string> 5 using namespace std; 6 #define LL long long 7 int p[101]; 8 int o[101]; 9 LL dp[101][101];10 int num = 1;11 LL dfs(int L,int R)12 {13 int i;14 LL temp;1 阅读全文
posted @ 2013-03-10 18:53 Naix_x 阅读(163) 评论(0) 推荐(0)