結果

問題 No.1818 6 Operations
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-22 18:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 421 ms / 2,500 ms
コード長 635 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 180,864 KB
最終ジャッジ日時 2024-05-05 18:20:52
合計ジャッジ時間 8,951 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 45 ms
59,904 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 187 ms
109,696 KB
testcase_09 AC 274 ms
134,912 KB
testcase_10 AC 144 ms
110,208 KB
testcase_11 AC 160 ms
107,776 KB
testcase_12 AC 219 ms
112,512 KB
testcase_13 AC 175 ms
113,664 KB
testcase_14 AC 209 ms
112,640 KB
testcase_15 AC 238 ms
132,736 KB
testcase_16 AC 207 ms
112,896 KB
testcase_17 AC 310 ms
135,808 KB
testcase_18 AC 393 ms
174,592 KB
testcase_19 AC 350 ms
157,440 KB
testcase_20 AC 382 ms
175,360 KB
testcase_21 AC 373 ms
177,280 KB
testcase_22 AC 309 ms
157,952 KB
testcase_23 AC 404 ms
180,864 KB
testcase_24 AC 317 ms
157,056 KB
testcase_25 AC 421 ms
180,608 KB
testcase_26 AC 328 ms
157,440 KB
testcase_27 AC 360 ms
156,288 KB
testcase_28 AC 209 ms
110,848 KB
testcase_29 AC 213 ms
108,032 KB
testcase_30 AC 409 ms
173,696 KB
testcase_31 AC 391 ms
180,352 KB
testcase_32 AC 413 ms
180,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
lA = []
lB = []
for a in A:
    lA.append(0)
    for i in range(a):
        lA.append(1)

for b in B:
    lB.append(0)
    for i in range(b):
        lB.append(1)


dp = [[0]*(len(lB)+1) for i in range(len(lA)+1)]
for i in range(len(lA)+1):
    dp[i][0] = i

for i in range(len(lB)+1):
    dp[0][i] = i

for i in range(1,len(lA)+1):
    for j in range(1,len(lB)+1):
        if lA[i-1] == lB[j-1]:
            dp[i][j] = dp[i-1][j-1]
        else:
            dp[i][j] = min(dp[i-1][j-1]+1,dp[i][j-1]+1,dp[i-1][j]+1)

print(dp[-1][-1])
0