結果

問題 No.422 文字列変更 (Hard)
ユーザー kmjpkmjp
提出日時 2016-09-09 23:15:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 521 ms / 3,000 ms
コード長 1,926 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 161,404 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-11-17 06:35:47
合計ジャッジ時間 8,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,720 KB
testcase_01 AC 381 ms
62,848 KB
testcase_02 AC 416 ms
62,976 KB
testcase_03 AC 352 ms
62,848 KB
testcase_04 AC 369 ms
62,848 KB
testcase_05 AC 427 ms
62,848 KB
testcase_06 AC 499 ms
62,720 KB
testcase_07 AC 43 ms
62,848 KB
testcase_08 AC 46 ms
62,720 KB
testcase_09 AC 494 ms
62,848 KB
testcase_10 AC 521 ms
62,848 KB
testcase_11 AC 384 ms
62,848 KB
testcase_12 AC 351 ms
62,720 KB
testcase_13 AC 372 ms
62,848 KB
testcase_14 AC 372 ms
62,848 KB
testcase_15 AC 381 ms
62,848 KB
testcase_16 AC 383 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,M;
string S,T;
int dp[1300][1300][3][3];
int pat[1300][1300][3][3];

string RS,RT;

int dpdp(int s,int t,int st,int tt) { // 0-none 1-add 2-del
	if(s==N && t==M) return 0;
	int& ret=dp[s][t][st][tt];
	if(ret>=0) return ret;
	
	ret=10101010;
	//match
	if(s<N && t<M) ret = min(ret, dpdp(s+1,t+1,0,0)+((S[s]==T[t])?0:5));
	// del
	if(s<N) ret = min(ret, dpdp(s+1,t,2,tt)+((st==2)?2:9));
	if(t<M) ret = min(ret, dpdp(s,t+1,st,2)+((tt==2)?2:9));
	// add
	if(s<N) ret = min(ret, dpdp(s+1,t,st,1)+((tt==1)?2:9));
	if(t<M) ret = min(ret, dpdp(s,t+1,1,tt)+((st==1)?2:9));
	return ret;
}

void dfs(int s,int t,int st,int tt) {
	if(s==N && t==M) return;
	int& ret=dp[s][t][st][tt];
	
	if(s<N && t<M && ret==dpdp(s+1,t+1,0,0)+((S[s]==T[t])?0:5)) RS+=S[s], RT+=T[t], dfs(s+1,t+1,0,0);
	else if(s<N && ret==dpdp(s+1,t,2,tt)+((st==2)?2:9))       RS+=S[s], RT+='-',  dfs(s+1,t,2,tt);
	else if(t<M && ret==dpdp(s,t+1,st,2)+((tt==2)?2:9))       RS+='-',  RT+=T[t], dfs(s,t+1,st,2);
	else if(s<N && ret==dpdp(s+1,t,st,1)+((tt==1)?2:9))       RS+=S[s], RT+=S[s], dfs(s+1,t,st,1);
	else RS+=T[t], RT+=T[t], dfs(s,t+1,1,st);
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>S>>T;
	MINUS(dp);
	
	cout<<dpdp(0,0,0,0)<<endl;
	dfs(0,0,0,0);
	cout<<RS<<endl<<RT<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0