結果

問題 No.1818 6 Operations
ユーザー first_vilfirst_vil
提出日時 2022-01-21 22:20:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 859 ms / 2,500 ms
コード長 1,042 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 303,084 KB
最終ジャッジ日時 2024-11-26 00:50:37
合計ジャッジ時間 16,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 41 ms
58,496 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 36 ms
52,608 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 300 ms
144,128 KB
testcase_09 AC 533 ms
189,044 KB
testcase_10 AC 318 ms
144,768 KB
testcase_11 AC 254 ms
122,880 KB
testcase_12 AC 433 ms
166,656 KB
testcase_13 AC 333 ms
145,268 KB
testcase_14 AC 399 ms
166,912 KB
testcase_15 AC 464 ms
188,928 KB
testcase_16 AC 383 ms
166,728 KB
testcase_17 AC 523 ms
212,480 KB
testcase_18 AC 767 ms
257,536 KB
testcase_19 AC 706 ms
258,276 KB
testcase_20 AC 770 ms
258,176 KB
testcase_21 AC 781 ms
257,792 KB
testcase_22 AC 694 ms
235,048 KB
testcase_23 AC 847 ms
281,292 KB
testcase_24 AC 758 ms
234,612 KB
testcase_25 AC 837 ms
303,084 KB
testcase_26 AC 730 ms
258,268 KB
testcase_27 AC 783 ms
257,920 KB
testcase_28 AC 327 ms
142,984 KB
testcase_29 AC 289 ms
120,960 KB
testcase_30 AC 797 ms
256,768 KB
testcase_31 AC 785 ms
280,704 KB
testcase_32 AC 859 ms
280,088 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