結果

問題 No.1818 6 Operations
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-15 13:19:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,500 ms
コード長 1,203 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 191,232 KB
最終ジャッジ日時 2024-09-18 08:43:05
合計ジャッジ時間 9,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
66,980 KB
testcase_01 AC 58 ms
69,632 KB
testcase_02 AC 54 ms
67,456 KB
testcase_03 AC 55 ms
66,944 KB
testcase_04 AC 54 ms
66,816 KB
testcase_05 AC 54 ms
66,560 KB
testcase_06 AC 58 ms
67,072 KB
testcase_07 AC 60 ms
66,944 KB
testcase_08 AC 181 ms
106,112 KB
testcase_09 AC 229 ms
128,640 KB
testcase_10 AC 175 ms
107,264 KB
testcase_11 AC 174 ms
106,496 KB
testcase_12 AC 252 ms
128,640 KB
testcase_13 AC 146 ms
106,496 KB
testcase_14 AC 239 ms
127,104 KB
testcase_15 AC 207 ms
128,384 KB
testcase_16 AC 191 ms
125,056 KB
testcase_17 AC 310 ms
147,584 KB
testcase_18 AC 343 ms
172,928 KB
testcase_19 AC 306 ms
172,192 KB
testcase_20 AC 316 ms
174,080 KB
testcase_21 AC 399 ms
173,184 KB
testcase_22 AC 341 ms
151,808 KB
testcase_23 AC 338 ms
173,440 KB
testcase_24 AC 380 ms
168,064 KB
testcase_25 AC 341 ms
191,232 KB
testcase_26 AC 361 ms
169,984 KB
testcase_27 AC 405 ms
172,928 KB
testcase_28 AC 190 ms
104,832 KB
testcase_29 AC 173 ms
106,240 KB
testcase_30 AC 410 ms
172,800 KB
testcase_31 AC 398 ms
173,952 KB
testcase_32 AC 431 ms
173,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import Any, Sequence


INF = int(1e18)


def min(a: int, b: int) -> int:
    return a if a < b else b


def editDistance(word1: Sequence[Any], word2: Sequence[Any]) -> int:
    n1, n2 = len(word1), len(word2)
    dp = [[INF] * (n2 + 1) for _ in range(n1 + 1)]
    dp[0][0] = 0

    for i in range(n1 + 1):
        dp[i][0] = i
    for j in range(n2 + 1):
        dp[0][j] = j

    for i in range(1, n1 + 1):
        for j in range(1, n2 + 1):
            if word1[i - 1] == word2[j - 1]:
                dp[i][j] = dp[i - 1][j - 1]
            else:
                dp[i][j] = min(dp[i - 1][j - 1] + 1, min(dp[i - 1][j] + 1, dp[i][j - 1] + 1))

    return dp[n1][n2]


from typing import List


def operation6(nums1: List[int], nums2: List[int]) -> int:
    sb1, sb2 = [], []
    for v in nums1:
        for _ in range(v):
            sb1.append(1)
        sb1.append(0)
    for v in nums2:
        for _ in range(v):
            sb2.append(1)
        sb2.append(0)

    return editDistance(sb1, sb2)


if __name__ == "__main__":
    n, m = map(int, input().split())
    nums1 = list(map(int, input().split()))
    nums2 = list(map(int, input().split()))
    print(operation6(nums1, nums2))
0