結果

問題 No.874 正規表現間距離
ユーザー kmjpkmjp
提出日時 2019-08-30 22:18:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,949 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 173,416 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-11-22 00:18:23
合計ジャッジ時間 5,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
67,176 KB
testcase_01 AC 30 ms
67,072 KB
testcase_02 AC 28 ms
67,072 KB
testcase_03 AC 29 ms
67,072 KB
testcase_04 AC 31 ms
67,072 KB
testcase_05 AC 30 ms
67,072 KB
testcase_06 AC 29 ms
67,200 KB
testcase_07 AC 30 ms
67,072 KB
testcase_08 AC 31 ms
67,120 KB
testcase_09 AC 31 ms
67,072 KB
testcase_10 AC 30 ms
67,256 KB
testcase_11 AC 30 ms
67,072 KB
testcase_12 AC 30 ms
67,072 KB
testcase_13 AC 30 ms
67,072 KB
testcase_14 AC 31 ms
67,200 KB
testcase_15 AC 30 ms
67,072 KB
testcase_16 AC 35 ms
67,200 KB
testcase_17 AC 34 ms
67,192 KB
testcase_18 AC 32 ms
67,200 KB
testcase_19 AC 31 ms
67,200 KB
testcase_20 AC 30 ms
67,200 KB
testcase_21 AC 29 ms
67,200 KB
testcase_22 AC 30 ms
67,072 KB
testcase_23 AC 30 ms
67,072 KB
testcase_24 AC 30 ms
67,328 KB
testcase_25 AC 50 ms
67,328 KB
testcase_26 AC 49 ms
67,404 KB
testcase_27 AC 84 ms
67,328 KB
testcase_28 AC 72 ms
67,328 KB
testcase_29 AC 84 ms
67,360 KB
testcase_30 AC 85 ms
67,456 KB
testcase_31 AC 80 ms
67,456 KB
testcase_32 AC 80 ms
67,456 KB
testcase_33 AC 30 ms
67,328 KB
testcase_34 AC 31 ms
67,068 KB
testcase_35 AC 30 ms
67,072 KB
testcase_36 AC 41 ms
67,328 KB
testcase_37 AC 41 ms
67,328 KB
testcase_38 AC 30 ms
67,068 KB
testcase_39 AC 30 ms
67,072 KB
testcase_40 AC 30 ms
67,200 KB
testcase_41 AC 28 ms
67,072 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))
//-------------------------------------------------------

string A,B;
vector<pair<char,int>> X,Y;
int N,M;
int memo[4040][4040];

vector<pair<char,int>> conv(string S) {
	vector<pair<char,int>> R;
	int i=0;
	while(i<S.size()) {
		if(i+1<S.size()&&S[i+1]=='?') {
			R.push_back({S[i],0});
			i+=2;
		}
		else if(i+1<S.size()&&S[i+1]=='*') {
			R.push_back({S[i],2});
			i+=2;
		}
		else {
			R.push_back({S[i],1});
			i++;
		}
	}
	//FORR(r,R) cout<<(char)r.first<<r.second<<" ";
	//cout<<endl;
	return R;
}

int hoge(int x,int y) {
	if(memo[x][y]>=0) return memo[x][y];
	if(x==N&&y==M) return 0;
	int ret=1<<30;
	
	if(x==N) {
		ret=(Y[y].second==1)+hoge(x,y+1);
	}
	else if(y==M) {
		ret=(X[x].second==1)+hoge(x+1,y);
	}
	else {
		ret=min(ret,1+hoge(x+1,y+1));
		ret=min(ret,1+hoge(x+1,y));
		ret=min(ret,1+hoge(x,y+1));
		if(X[x].second==0||X[x].second==2) ret=min(ret,hoge(x+1,y));
		if(Y[y].second==0||Y[y].second==2) ret=min(ret,hoge(x,y+1));
		
		if(X[x].first==Y[y].first) {
			ret=min(ret,hoge(x+1,y+1));
			if(Y[y].second==2) ret=min(ret,hoge(x+1,y));
			if(X[x].second==2) ret=min(ret,hoge(x,y+1));
		}
		
		
	}
	//cout<<x<<y<<" "<<ret<<endl;
	return memo[x][y]=ret;
	
	
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>A>>B;
	X=conv(A);
	Y=conv(B);
	N=X.size();
	M=Y.size();
	
	MINUS(memo);
	cout<<hoge(0,0)<<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);
	cout.tie(0); solve(); return 0;
}
0