結果
問題 | No.1818 6 Operations |
ユーザー | ygd. |
提出日時 | 2022-01-22 20:12:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,815 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 140,288 KB |
最終ジャッジ日時 | 2024-05-05 20:20:34 |
合計ジャッジ時間 | 7,193 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,000 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 27 ms
10,496 KB |
testcase_03 | AC | 28 ms
10,752 KB |
testcase_04 | AC | 26 ms
10,624 KB |
testcase_05 | AC | 26 ms
10,624 KB |
testcase_06 | AC | 27 ms
10,752 KB |
testcase_07 | AC | 26 ms
10,752 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
import sys #input = sys.stdin.readline #文字列につけてはダメ input = sys.stdin.buffer.readline #文字列につけてはダメ #sys.setrecursionlimit(1000000) #import bisect #import itertools #import random #from heapq import heapify, heappop, heappush #from collections import defaultdict #from collections import deque #import copy #import math #from functools import lru_cache #@lru_cache(maxsize=None) #MOD = pow(10,9) + 7 #MOD = 998244353 #dx = [1,0,-1,0] #dy = [0,1,0,-1] def Levenshtein_distance(A,B): #dp[i][j], Aがi文字目、Bがj文字目までにおける最小処理回数 INF = pow(10,18) n = len(A); m = len(B) dp = [[INF]*(m+1) for _ in range(n+1)] #初期化の方法が特殊。片方が0でもう片方がi文字なら最小処理回数はi。 for i in range(n+1): dp[i][0] = i for i in range(m+1): dp[0][i] = i for i in range(n): #i = 0つまり、0文字目なのでdp[1][1]からスタート for j in range(m): if A[i] == B[j]: #同じ場合そのままか、片方が一つずれているところから追加挿入。 dp[i+1][j+1] = min(dp[i][j],dp[i][j+1]+1,dp[i+1][j]+1) else: #異なる場合i文字目を交換か、片方が一つずれているところから追加挿入。 dp[i+1][j+1] = min(dp[i][j]+1,dp[i][j+1]+1, dp[i+1][j]+1) return dp[n][m] def change(X): ret = [] for x in X: ret.append(0) for _ in range(x): ret.append(1) return ret def main(): N,M = map(int,input().split()) A = list(map(int,input().split())) B = list(map(int,input().split())) C = change(A) D = change(B) #print(C,D) ans = Levenshtein_distance(C,D) print(ans) if __name__ == '__main__': main()