結果

問題 No.422 文字列変更 (Hard)
ユーザー 👑 kmjpkmjp
提出日時 2016-09-09 22:59:49
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,215 bytes
コンパイル時間 1,214 ms
コンパイル使用メモリ 162,836 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-04-28 14:06:11
合計ジャッジ時間 7,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
62,720 KB
testcase_01 AC 329 ms
62,848 KB
testcase_02 AC 360 ms
62,952 KB
testcase_03 AC 302 ms
62,848 KB
testcase_04 AC 332 ms
62,976 KB
testcase_05 AC 376 ms
62,976 KB
testcase_06 AC 435 ms
62,976 KB
testcase_07 AC 18 ms
62,976 KB
testcase_08 AC 19 ms
63,104 KB
testcase_09 AC 415 ms
62,976 KB
testcase_10 AC 447 ms
62,976 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
	
	if(s==N) return ret=min((st==1)?0:7,(tt==2)?0:7)+(M-t)*2;
	if(t==M) return ret=min((st==2)?0:7,(tt==1)?0:7)+(N-s)*2;
	ret=10101010;
	//match
	ret = min(ret, dpdp(s+1,t+1,0,0)+((S[s]==T[t])?0:5));
	// del
	ret = min(ret, dpdp(s+1,t,2,tt)+((st==2)?2:9));
	ret = min(ret, dpdp(s,t+1,st,2)+((tt==2)?2:9));
	// add
	ret = min(ret, dpdp(s+1,t,st,1)+((tt==1)?2:9));
	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) {
		if(st==1) {
			while(t<M) RS+=T[t], RT+=T[t], t++;
		}
		else {
			while(t<M) RS+='-', RT+=T[t], t++;
		}
	}
	if(t==M) {
		if(st==2) {
			while(s<N) RS+=S[s], RT+='-', s++;
		}
		else {
			while(s<N) RS+=S[s], RT+=S[s], s++;
		}
	}
	else if(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(ret==dpdp(s+1,t,2,tt)+((st==2)?2:9))       RS+=S[s], RT+='-',  dfs(s+1,t,2,tt);
	else if(ret==dpdp(s,t+1,st,2)+((tt==2)?2:9))       RS+='-',  RT+=T[t], dfs(s,t+1,st,2);
	else if(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