結果

問題 No.1818 6 Operations
ユーザー ForestedForested
提出日時 2021-11-08 21:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,099 ms / 2,500 ms
コード長 695 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 189,120 KB
最終ジャッジ日時 2024-11-17 21:03:48
合計ジャッジ時間 20,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,332 KB
testcase_01 AC 40 ms
57,716 KB
testcase_02 AC 50 ms
60,368 KB
testcase_03 AC 35 ms
52,932 KB
testcase_04 AC 37 ms
53,996 KB
testcase_05 AC 36 ms
52,400 KB
testcase_06 AC 35 ms
52,240 KB
testcase_07 AC 40 ms
53,972 KB
testcase_08 AC 403 ms
109,904 KB
testcase_09 AC 721 ms
141,196 KB
testcase_10 AC 342 ms
110,192 KB
testcase_11 AC 338 ms
107,648 KB
testcase_12 AC 548 ms
127,536 KB
testcase_13 AC 470 ms
117,976 KB
testcase_14 AC 558 ms
124,620 KB
testcase_15 AC 585 ms
132,432 KB
testcase_16 AC 488 ms
122,848 KB
testcase_17 AC 752 ms
145,772 KB
testcase_18 AC 1,018 ms
174,028 KB
testcase_19 AC 914 ms
169,776 KB
testcase_20 AC 1,016 ms
175,160 KB
testcase_21 AC 1,049 ms
177,148 KB
testcase_22 AC 835 ms
162,848 KB
testcase_23 AC 1,095 ms
183,304 KB
testcase_24 AC 922 ms
165,524 KB
testcase_25 AC 1,085 ms
189,120 KB
testcase_26 AC 960 ms
167,436 KB
testcase_27 AC 1,013 ms
171,724 KB
testcase_28 AC 374 ms
110,176 KB
testcase_29 AC 389 ms
107,668 KB
testcase_30 AC 1,035 ms
173,616 KB
testcase_31 AC 1,056 ms
180,128 KB
testcase_32 AC 1,099 ms
185,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def edit_distance(a, b):
    dp = [[0 for j in range(len(b) + 1)] for i in range(len(a) + 1)]
    for i in range(len(a) + 1):
        dp[i][0] = i
    for i in range(len(b) + 1):
        dp[0][i] = i
    for i in range(len(a)):
        for j in range(len(b)):
            dp[i + 1][j + 1] = min([dp[i + 1][j] + 1, dp[i][j] + (a[i] != b[j]), dp[i][j + 1] + 1])
    return dp[len(a)][len(b)]

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
aa = []
for i in range(n):
    aa += [0] * a[i]
    if i != n - 1:
        aa += [1]
bb = []
for i in range(m):
    bb += [0] * b[i]
    if i != m - 1:
        bb += [1]
print(edit_distance(aa, bb))
0