結果

問題 No.874 正規表現間距離
ユーザー vwxyzvwxyz
提出日時 2024-04-19 13:38:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 1,714 bytes
コンパイル時間 1,058 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 108,060 KB
最終ジャッジ日時 2024-10-11 06:02:52
合計ジャッジ時間 6,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,796 KB
testcase_01 AC 38 ms
52,536 KB
testcase_02 AC 38 ms
52,948 KB
testcase_03 AC 38 ms
52,304 KB
testcase_04 AC 38 ms
52,516 KB
testcase_05 AC 38 ms
53,360 KB
testcase_06 AC 39 ms
52,264 KB
testcase_07 AC 38 ms
52,396 KB
testcase_08 AC 38 ms
53,096 KB
testcase_09 AC 38 ms
53,532 KB
testcase_10 AC 38 ms
52,696 KB
testcase_11 AC 39 ms
53,656 KB
testcase_12 AC 38 ms
52,692 KB
testcase_13 AC 38 ms
53,164 KB
testcase_14 AC 38 ms
53,248 KB
testcase_15 AC 40 ms
53,308 KB
testcase_16 AC 116 ms
78,824 KB
testcase_17 AC 118 ms
78,424 KB
testcase_18 AC 39 ms
53,184 KB
testcase_19 AC 38 ms
52,832 KB
testcase_20 AC 38 ms
52,956 KB
testcase_21 AC 40 ms
54,380 KB
testcase_22 AC 41 ms
53,264 KB
testcase_23 AC 40 ms
55,092 KB
testcase_24 AC 38 ms
54,204 KB
testcase_25 AC 223 ms
87,116 KB
testcase_26 AC 214 ms
87,032 KB
testcase_27 AC 311 ms
107,776 KB
testcase_28 AC 447 ms
100,944 KB
testcase_29 AC 290 ms
107,872 KB
testcase_30 AC 324 ms
108,060 KB
testcase_31 AC 463 ms
104,616 KB
testcase_32 AC 463 ms
104,964 KB
testcase_33 AC 63 ms
68,852 KB
testcase_34 AC 38 ms
52,800 KB
testcase_35 AC 71 ms
73,212 KB
testcase_36 AC 221 ms
84,812 KB
testcase_37 AC 222 ms
84,324 KB
testcase_38 AC 38 ms
52,620 KB
testcase_39 AC 40 ms
53,448 KB
testcase_40 AC 38 ms
52,940 KB
testcase_41 AC 38 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=input()
B=input()
boundA=[0]
boundB=[0]
for i in range(1,len(A)):
    if not A[i] in "*?":
        boundA.append(i)
boundA.append(len(A))
for i in range(1,len(B)):
    if not B[i] in "*?":
        boundB.append(i)
boundB.append(len(B))
A=[A[i:j] for i,j in zip(boundA,boundA[1:])]
B=[B[i:j] for i,j in zip(boundB,boundB[1:])]
leA=len(A)
leB=len(B)
inf=1<<30
dp=[[inf]*(leB+1) for a in range(leA+1)]
dp[0][0]=0
for i in range(leA+1):
    for j in range(leB+1):
        if i:
            dp[i][j]=min(dp[i][j],dp[i-1][j]+1)
            if len(A[i-1])==2 and A[i-1][1] in "?*":
                dp[i][j]=min(dp[i][j],dp[i-1][j])
        if j:
            dp[i][j]=min(dp[i][j],dp[i][j-1]+1)
            if len(B[j-1])==2 and B[j-1][1] in "?*":
                dp[i][j]=min(dp[i][j],dp[i][j-1])
        if i and j:
            dp[i][j]=min(dp[i][j],dp[i-1][j-1]+1)
            if A[i-1]==B[j-1]:
                dp[i][j]=min(dp[i][j],dp[i-1][j-1])
            if len(A[i-1])==2 and A[i-1][1]=="?" and A[i-1][0]==B[j-1]:
                dp[i][j]=min(dp[i][j],dp[i-1][j-1])
            if len(B[j-1])==2 and B[j-1][1]=="?" and B[j-1][0]==A[i-1]:
                dp[i][j]=min(dp[i][j],dp[i-1][j-1])

            if len(A[i-1])==2 and A[i-1][1]=="*" and A[i-1][0]==B[j-1]:
                dp[i][j]=min(dp[i][j],dp[i-1][j-1])
            if len(B[j-1])==2 and B[j-1][1]=="*" and B[j-1][0]==A[i-1]:
                dp[i][j]=min(dp[i][j],dp[i-1][j-1])

            if len(A[i-1])==2 and A[i-1][1]=="*" and A[i-1][0]==B[j-1]:
                dp[i][j]=min(dp[i][j],dp[i][j-1])
            if len(B[j-1])==2 and B[j-1][1]=="*" and B[j-1][0]==A[i-1]:
                dp[i][j]=min(dp[i][j],dp[i-1][j])
ans=dp[leA][leB]
print(ans)
0