이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,m;
string s,t;
vector<vector<int>> dp(305,vector<int> (305,1e18));
signed main(){
	cin>>n>>m>>s>>t;
	s='.'+s;
	t='?'+t;
	//dp[i][j] t-iin ehnii i useg s-iin suuliin useg j deer bsn
	for(int i=1; i<=n; i++){
		if(s[i]==t[1]){
			dp[1][i]=0;	
		}
	}
	for(int i=2; i<=m; i++){
		for(int j=1; j<=n; j++){
//			for(int k=
			if(j!=1){
				if(t[i]==s[j] and t[i-1]==s[j-1]){
					dp[i][j]=min(dp[i][j],dp[i-1][j-1]+1);
				}
			}
			if(j!=n){
				if(t[i]==s[j] and t[i-1]==s[j+1]){
					dp[i][j]=min(dp[i][j],dp[i-1][j+1]+1);
				}
			}
			for(int k=1; k<=n; k++){
				if(k==j) continue;
				if(s[k]==s[j]) dp[i][k]=min(dp[i][k],dp[i][j]+abs(k-j));
			}
		}
	}
//	for(int i=1; i<=m; i++){
//		for(int j=1; j<=n; j++){
//			cout<<dp[i][j]<<" ";
//		}
//		cout<<endl;
//	}
	int ans=1e18;
	for(int i=1; i<=n; i++){
		ans=min(ans,dp[m][i]);	
	}
	if(ans==1e18) cout<<-1<<endl;
	else cout<<ans<<endl;
//	cout<< (ans==1e18) ? -1 : (ans);
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... |