結果

問題 No.874 正規表現間距離
ユーザー kotatsugamekotatsugame
提出日時 2019-09-04 09:42:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 1,274 ms
コンパイル使用メモリ 76,460 KB
実行使用メモリ 19,532 KB
最終ジャッジ日時 2024-06-07 17:36:53
合計ジャッジ時間 1,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 5 ms
8,212 KB
testcase_17 AC 5 ms
8,256 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 13 ms
11,868 KB
testcase_26 AC 11 ms
12,576 KB
testcase_27 AC 24 ms
19,532 KB
testcase_28 AC 20 ms
17,368 KB
testcase_29 AC 28 ms
19,512 KB
testcase_30 AC 28 ms
19,440 KB
testcase_31 AC 22 ms
19,136 KB
testcase_32 AC 23 ms
19,292 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 3 ms
6,944 KB
testcase_36 AC 9 ms
11,276 KB
testcase_37 AC 8 ms
11,948 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:21:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   21 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int dp[2020][2020];
vector<string>f()
{
	string s;cin>>s;
	vector<string>A;
	for(int i=0;i<s.size();i++)
	{
		if(i+2<=s.size()&&(s[i+1]=='?'||s[i+1]=='*'))
		{
			A.push_back(s.substr(i,2));
			i++;
		}
		else A.push_back(s.substr(i,1));
	}
	return A;
}
main()
{
	vector<string>A=f(),B=f();
	for(int i=0;i<=A.size();i++)for(int j=0;j<=B.size();j++)dp[i][j]=1e9;
	dp[0][0]=0;
	for(int i=0;i<=A.size();i++)for(int j=0;j<=B.size();j++)
	{
		if(i<A.size())dp[i+1][j]=min(dp[i+1][j],dp[i][j]+(A[i].size()>1?0:1));
		if(j<B.size())dp[i][j+1]=min(dp[i][j+1],dp[i][j]+(B[j].size()>1?0:1));
		if(i<A.size()&&j<B.size())
		{
			dp[i+1][j+1]=min(dp[i+1][j+1],dp[i][j]+(A[i][0]!=B[j][0]));
			if(A[i][0]==B[j][0])
			{
				if(A[i][1]=='*')dp[i][j+1]=min(dp[i][j+1],dp[i][j]);
				if(B[j][1]=='*')dp[i+1][j]=min(dp[i+1][j],dp[i][j]);
			}
		}
	}
	cout<<dp[A.size()][B.size()]<<endl;
}
0