摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 #define N 1100 6 7 char s[N]; 8 char t[N]; 9 10 int dp[N][N]; 11 12 int main() 13 { 14 cin >> s; 15 cin >> t; 16 i... 阅读全文
posted @ 2017-09-06 08:47 lzf2017 阅读(511) 评论(0) 推荐(0) 编辑