結果

問題 No.1818 6 Operations
ユーザー tamatotamato
提出日時 2022-01-21 22:14:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,016 ms / 2,500 ms
コード長 1,018 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 189,568 KB
最終ジャッジ日時 2024-11-26 00:40:55
合計ジャッジ時間 18,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,352 KB
testcase_01 AC 48 ms
58,496 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 359 ms
109,696 KB
testcase_09 AC 626 ms
141,056 KB
testcase_10 AC 268 ms
110,336 KB
testcase_11 AC 326 ms
107,904 KB
testcase_12 AC 539 ms
127,360 KB
testcase_13 AC 295 ms
118,144 KB
testcase_14 AC 533 ms
124,672 KB
testcase_15 AC 520 ms
132,608 KB
testcase_16 AC 467 ms
123,136 KB
testcase_17 AC 626 ms
146,048 KB
testcase_18 AC 928 ms
174,720 KB
testcase_19 AC 849 ms
170,112 KB
testcase_20 AC 881 ms
175,616 KB
testcase_21 AC 988 ms
177,280 KB
testcase_22 AC 710 ms
163,072 KB
testcase_23 AC 980 ms
183,680 KB
testcase_24 AC 858 ms
165,888 KB
testcase_25 AC 981 ms
189,568 KB
testcase_26 AC 800 ms
167,680 KB
testcase_27 AC 845 ms
171,904 KB
testcase_28 AC 419 ms
110,336 KB
testcase_29 AC 381 ms
108,288 KB
testcase_30 AC 998 ms
173,696 KB
testcase_31 AC 861 ms
180,096 KB
testcase_32 AC 1,016 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