結果

問題 No.1818 6 Operations
ユーザー ShirotsumeShirotsume
提出日時 2022-01-25 13:45:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 537 ms / 2,500 ms
コード長 646 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 189,928 KB
最終ジャッジ日時 2024-12-16 02:43:24
合計ジャッジ時間 11,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,928 KB
testcase_01 AC 50 ms
62,364 KB
testcase_02 AC 37 ms
52,820 KB
testcase_03 AC 36 ms
53,072 KB
testcase_04 AC 35 ms
53,748 KB
testcase_05 AC 36 ms
53,572 KB
testcase_06 AC 37 ms
52,508 KB
testcase_07 AC 34 ms
53,024 KB
testcase_08 AC 215 ms
110,480 KB
testcase_09 AC 351 ms
141,576 KB
testcase_10 AC 214 ms
110,776 KB
testcase_11 AC 212 ms
108,352 KB
testcase_12 AC 317 ms
127,852 KB
testcase_13 AC 216 ms
118,436 KB
testcase_14 AC 289 ms
125,196 KB
testcase_15 AC 312 ms
133,040 KB
testcase_16 AC 254 ms
123,452 KB
testcase_17 AC 382 ms
145,984 KB
testcase_18 AC 501 ms
174,640 KB
testcase_19 AC 444 ms
170,604 KB
testcase_20 AC 513 ms
175,996 KB
testcase_21 AC 513 ms
177,732 KB
testcase_22 AC 422 ms
163,152 KB
testcase_23 AC 537 ms
183,632 KB
testcase_24 AC 475 ms
166,292 KB
testcase_25 AC 500 ms
189,928 KB
testcase_26 AC 472 ms
168,260 KB
testcase_27 AC 499 ms
172,348 KB
testcase_28 AC 214 ms
110,840 KB
testcase_29 AC 204 ms
108,428 KB
testcase_30 AC 523 ms
174,240 KB
testcase_31 AC 461 ms
180,296 KB
testcase_32 AC 537 ms
185,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
s = []
t = []
for i in range(n):
    for _ in range(a[i]):
        s.append(1)
    s.append(0)
for i in range(m):
    for _ in range(b[i]):
        t.append(1)
    t.append(0)
s = ''.join(map(str, s));t = ''.join(map(str, t))
n = len(s)
m = len(t)
dp = [[0] * (m + 1) for _ in range(n + 1)]
for i in range(n + 1):
    dp[i][0] = i
for j in range(m + 1):
    dp[0][j] = j
for i in range(1, n + 1):
    for j in range(1, m + 1):
        dp[i][j] = min(dp[i - 1][j] + 1, dp[i][j - 1] + 1, dp[i - 1][j - 1] + (s[i - 1] != t[j - 1]))
print(dp[n][m])
0