Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
112038 毛泓博(做题专用,大号Fess) 最长公共子序列 C++ 运行出错 0 0 MS 80 KB 428 2023-11-25 09:49:30

Tests(0/10):


#include<bits/stdc++.h> using namespace std; string a,b; int dp[10000][10000],sa,sb; int main() { cin>>a>>b; sa=a.length(); sb=b.length(); for(int i=1;i<=sa;i++) { for(int j=1;j<=sb;j++) { if(a[i]==b[j]) dp[i][j]=dp[i-1][j-1]+1; else dp[i][j]=dp[i-1][j]+dp[i][j-1]; } } for(int i=0;i<=sa;i++) { for(int j=0;j<=sb;j++) cout<<dp[i][j]; cout<<endl; } cout<<dp[sa][sb]; return 0; }


测评信息: