2013年8月19日
摘要: 题目链接。#include #include #include #include #include using namespace std;const int maxn = 1000+10;char s1[maxn], s2[maxn], s3[maxn];int dp1[maxn][maxn], dp2[maxn][maxn];int que1[maxn][2], que2[maxn][2];void max_dp(char *s1, char *s2, int (*dp)[maxn]) { int len1 = strlen(s1), len2 = strlen(s2); fo... 阅读全文
posted @ 2013-08-19 17:07 Still_Raining 阅读(197) 评论(0) 推荐(0) 编辑