結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,692 KB
testcase_01 AC 41 ms
60,428 KB
testcase_02 AC 34 ms
52,792 KB
testcase_03 AC 35 ms
52,536 KB
testcase_04 AC 34 ms
52,024 KB
testcase_05 AC 34 ms
52,944 KB
testcase_06 AC 36 ms
53,176 KB
testcase_07 AC 35 ms
53,772 KB
testcase_08 AC 176 ms
109,712 KB
testcase_09 AC 271 ms
134,928 KB
testcase_10 AC 137 ms
110,352 KB
testcase_11 AC 151 ms
107,380 KB
testcase_12 AC 217 ms
112,504 KB
testcase_13 AC 171 ms
113,332 KB
testcase_14 AC 207 ms
112,512 KB
testcase_15 AC 236 ms
132,668 KB
testcase_16 AC 201 ms
112,664 KB
testcase_17 AC 275 ms
135,508 KB
testcase_18 AC 415 ms
174,152 KB
testcase_19 AC 347 ms
157,312 KB
testcase_20 AC 381 ms
175,424 KB
testcase_21 AC 390 ms
177,408 KB
testcase_22 AC 306 ms
157,944 KB
testcase_23 AC 404 ms
180,308 KB
testcase_24 AC 314 ms
157,400 KB
testcase_25 AC 404 ms
180,108 KB
testcase_26 AC 325 ms
157,360 KB
testcase_27 AC 364 ms
156,236 KB
testcase_28 AC 202 ms
110,604 KB
testcase_29 AC 207 ms
107,868 KB
testcase_30 AC 416 ms
173,952 KB
testcase_31 AC 389 ms
179,724 KB
testcase_32 AC 415 ms
180,208 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