結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
67,328 KB
testcase_01 AC 68 ms
70,016 KB
testcase_02 AC 63 ms
67,456 KB
testcase_03 AC 62 ms
66,944 KB
testcase_04 AC 63 ms
66,944 KB
testcase_05 AC 62 ms
67,328 KB
testcase_06 AC 63 ms
67,328 KB
testcase_07 AC 62 ms
67,712 KB
testcase_08 AC 200 ms
106,692 KB
testcase_09 AC 290 ms
128,896 KB
testcase_10 AC 190 ms
106,880 KB
testcase_11 AC 191 ms
107,036 KB
testcase_12 AC 261 ms
129,024 KB
testcase_13 AC 214 ms
106,880 KB
testcase_14 AC 261 ms
127,120 KB
testcase_15 AC 285 ms
128,768 KB
testcase_16 AC 239 ms
125,564 KB
testcase_17 AC 314 ms
148,224 KB
testcase_18 AC 428 ms
173,304 KB
testcase_19 AC 378 ms
172,544 KB
testcase_20 AC 335 ms
174,208 KB
testcase_21 AC 425 ms
173,568 KB
testcase_22 AC 354 ms
152,064 KB
testcase_23 AC 429 ms
174,080 KB
testcase_24 AC 313 ms
168,320 KB
testcase_25 AC 437 ms
192,000 KB
testcase_26 AC 314 ms
169,860 KB
testcase_27 AC 413 ms
173,472 KB
testcase_28 AC 212 ms
105,256 KB
testcase_29 AC 197 ms
106,240 KB
testcase_30 AC 427 ms
173,312 KB
testcase_31 AC 400 ms
174,336 KB
testcase_32 AC 432 ms
173,952 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:
        sb1.append(0)
        for _ in range(v):
            sb1.append(1)
    for v in nums2:
        sb2.append(0)
        for _ in range(v):
            sb2.append(1)

    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