結果

問題 No.1818 6 Operations
ユーザー first_vilfirst_vil
提出日時 2022-01-21 22:20:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 810 ms / 2,500 ms
コード長 1,042 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 303,216 KB
最終ジャッジ日時 2024-05-04 13:26:12
合計ジャッジ時間 15,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
58,368 KB
testcase_02 AC 34 ms
52,864 KB
testcase_03 AC 32 ms
52,608 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 32 ms
52,608 KB
testcase_06 AC 32 ms
52,480 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 270 ms
144,512 KB
testcase_09 AC 509 ms
189,424 KB
testcase_10 AC 295 ms
144,896 KB
testcase_11 AC 250 ms
123,264 KB
testcase_12 AC 438 ms
166,784 KB
testcase_13 AC 334 ms
145,548 KB
testcase_14 AC 386 ms
167,296 KB
testcase_15 AC 448 ms
189,644 KB
testcase_16 AC 355 ms
166,984 KB
testcase_17 AC 474 ms
212,992 KB
testcase_18 AC 759 ms
257,664 KB
testcase_19 AC 669 ms
258,152 KB
testcase_20 AC 727 ms
258,560 KB
testcase_21 AC 739 ms
258,048 KB
testcase_22 AC 657 ms
234,912 KB
testcase_23 AC 775 ms
281,552 KB
testcase_24 AC 707 ms
234,748 KB
testcase_25 AC 804 ms
303,216 KB
testcase_26 AC 736 ms
258,272 KB
testcase_27 AC 730 ms
257,664 KB
testcase_28 AC 294 ms
143,108 KB
testcase_29 AC 271 ms
121,128 KB
testcase_30 AC 765 ms
256,896 KB
testcase_31 AC 732 ms
281,088 KB
testcase_32 AC 810 ms
280,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

n, m = mi()
a = li()
b = li()
s = []
t = []
for i in range(n):
    if i:
        s.append(1)
    s += [0] * a[i]
for j in range(m):
    if j:
        t.append(1)
    t += [0] * b[j]

x = len(s)
y = len(t)
dp = [[INF] * (y + 1) for i in range(x + 1)]
dp[0][0] = 0
for i in range(x + 1):
    for j in range(y + 1):
        if i < x and j < y:
            cost = 0 if s[i] == t[j] else 1
            dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j] + cost)
        if i < x:
            dp[i + 1][j] = min(dp[i + 1][j], dp[i][j] + 1)
        if j < y:
            dp[i][j + 1] = min(dp[i][j + 1], dp[i][j] + 1)
print(dp[-1][-1])
0