結果

問題 No.1818 6 Operations
ユーザー ShirotsumeShirotsume
提出日時 2022-01-25 13:45:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 569 ms / 2,500 ms
コード長 646 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 189,952 KB
最終ジャッジ日時 2024-05-09 13:17:17
合計ジャッジ時間 11,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 46 ms
61,568 KB
testcase_02 AC 37 ms
53,120 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 216 ms
110,592 KB
testcase_09 AC 365 ms
141,568 KB
testcase_10 AC 212 ms
111,104 KB
testcase_11 AC 218 ms
108,272 KB
testcase_12 AC 314 ms
128,044 KB
testcase_13 AC 216 ms
118,640 KB
testcase_14 AC 306 ms
125,184 KB
testcase_15 AC 324 ms
133,056 KB
testcase_16 AC 255 ms
123,392 KB
testcase_17 AC 383 ms
146,544 KB
testcase_18 AC 515 ms
174,632 KB
testcase_19 AC 451 ms
170,552 KB
testcase_20 AC 519 ms
176,104 KB
testcase_21 AC 530 ms
177,808 KB
testcase_22 AC 439 ms
163,516 KB
testcase_23 AC 556 ms
183,680 KB
testcase_24 AC 494 ms
166,144 KB
testcase_25 AC 531 ms
189,952 KB
testcase_26 AC 493 ms
168,296 KB
testcase_27 AC 514 ms
172,672 KB
testcase_28 AC 223 ms
110,656 KB
testcase_29 AC 210 ms
108,544 KB
testcase_30 AC 538 ms
173,984 KB
testcase_31 AC 481 ms
180,500 KB
testcase_32 AC 569 ms
185,336 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