結果

問題 No.1818 6 Operations
ユーザー tamatotamato
提出日時 2022-01-21 22:14:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,030 ms / 2,500 ms
コード長 1,018 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 189,696 KB
最終ジャッジ日時 2024-05-04 13:16:57
合計ジャッジ時間 18,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,224 KB
testcase_01 AC 52 ms
58,368 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 370 ms
109,952 KB
testcase_09 AC 633 ms
141,116 KB
testcase_10 AC 260 ms
110,540 KB
testcase_11 AC 318 ms
107,776 KB
testcase_12 AC 543 ms
127,568 KB
testcase_13 AC 293 ms
118,400 KB
testcase_14 AC 522 ms
124,756 KB
testcase_15 AC 512 ms
132,660 KB
testcase_16 AC 464 ms
123,008 KB
testcase_17 AC 628 ms
146,176 KB
testcase_18 AC 916 ms
174,348 KB
testcase_19 AC 842 ms
170,332 KB
testcase_20 AC 884 ms
175,776 KB
testcase_21 AC 998 ms
177,620 KB
testcase_22 AC 704 ms
163,292 KB
testcase_23 AC 974 ms
183,636 KB
testcase_24 AC 862 ms
166,144 KB
testcase_25 AC 968 ms
189,696 KB
testcase_26 AC 791 ms
167,808 KB
testcase_27 AC 834 ms
172,016 KB
testcase_28 AC 412 ms
110,592 KB
testcase_29 AC 379 ms
108,160 KB
testcase_30 AC 987 ms
173,824 KB
testcase_31 AC 879 ms
180,480 KB
testcase_32 AC 1,030 ms
185,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
inf = 10 ** 17


def main():
    import sys
    input = sys.stdin.readline

    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))

    AA = []
    BB = []
    for a in A:
        for _ in range(a):
            AA.append(0)
        AA.append(1)
    for b in B:
        for _ in range(b):
            BB.append(0)
        BB.append(1)
    AA.pop()
    BB.pop()

    NN = len(AA)
    MM = len(BB)
    dp = [[inf] * (MM+1) for _ in range(NN+1)]
    dp[0][0] = 0
    for i in range(NN + 1):
        for j in range(MM + 1):
            cost = 1
            if i > 0 and j > 0:
                if AA[i-1] == BB[j-1]:
                    cost = 0
            if i > 0 and j > 0:
                dp[i][j] = min(dp[i-1][j] + 1, dp[i][j-1] + 1, dp[i-1][j-1] + cost)
            elif i == 0:
                dp[i][j] = j
            elif j == 0:
                dp[i][j] = i
    print(dp[-1][-1])


if __name__ == '__main__':
    main()
0