結果

問題 No.1818 6 Operations
ユーザー 👑 rin204rin204
提出日時 2022-01-23 02:08:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 611 ms / 2,500 ms
コード長 575 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 182,816 KB
最終ジャッジ日時 2024-11-28 15:08:31
合計ジャッジ時間 11,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,372 KB
testcase_01 AC 36 ms
59,808 KB
testcase_02 AC 33 ms
53,000 KB
testcase_03 AC 31 ms
52,288 KB
testcase_04 AC 33 ms
52,632 KB
testcase_05 AC 32 ms
52,732 KB
testcase_06 AC 33 ms
53,696 KB
testcase_07 AC 32 ms
52,404 KB
testcase_08 AC 200 ms
110,104 KB
testcase_09 AC 345 ms
137,120 KB
testcase_10 AC 196 ms
110,420 KB
testcase_11 AC 220 ms
107,904 KB
testcase_12 AC 306 ms
127,684 KB
testcase_13 AC 197 ms
115,076 KB
testcase_14 AC 274 ms
113,616 KB
testcase_15 AC 296 ms
132,768 KB
testcase_16 AC 235 ms
114,284 KB
testcase_17 AC 371 ms
136,440 KB
testcase_18 AC 530 ms
174,164 KB
testcase_19 AC 456 ms
159,680 KB
testcase_20 AC 487 ms
176,032 KB
testcase_21 AC 502 ms
177,276 KB
testcase_22 AC 487 ms
159,956 KB
testcase_23 AC 515 ms
182,780 KB
testcase_24 AC 457 ms
159,784 KB
testcase_25 AC 513 ms
182,816 KB
testcase_26 AC 447 ms
160,120 KB
testcase_27 AC 504 ms
172,256 KB
testcase_28 AC 218 ms
110,556 KB
testcase_29 AC 221 ms
108,272 KB
testcase_30 AC 526 ms
173,608 KB
testcase_31 AC 517 ms
180,276 KB
testcase_32 AC 611 ms
182,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
S = []
for a in A:
    S += [0] + [1] * a
T = []
for b in B:
    T += [0] + [1] * b
ls = len(S)
lt = len(T)
dp = [[1 << 30] * (lt + 1) for _ in range(ls + 1)]
dp[0][0] = 0

for i in range(1, ls + 1):
    for j in range(1, lt + 1):
        dp[i][j] = min(dp[i - 1][j] + 1, dp[i][j - 1] + 1)
        if S[i - 1] == T[j - 1]:
            dp[i][j] = min(dp[i][j], dp[i - 1][j - 1])
        else:
            dp[i][j] = min(dp[i][j], dp[i - 1][j - 1] + 1)

print(dp[ls][lt])
0