結果

問題 No.1818 6 Operations
ユーザー mkawa2mkawa2
提出日時 2024-02-15 23:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 2,500 ms
コード長 1,222 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 182,824 KB
最終ジャッジ日時 2024-09-28 19:07:57
合計ジャッジ時間 9,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,960 KB
testcase_01 AC 48 ms
63,432 KB
testcase_02 AC 40 ms
61,152 KB
testcase_03 AC 34 ms
54,188 KB
testcase_04 AC 33 ms
53,188 KB
testcase_05 AC 33 ms
52,900 KB
testcase_06 AC 35 ms
53,684 KB
testcase_07 AC 34 ms
53,320 KB
testcase_08 AC 213 ms
110,412 KB
testcase_09 AC 338 ms
136,968 KB
testcase_10 AC 165 ms
110,504 KB
testcase_11 AC 203 ms
108,240 KB
testcase_12 AC 239 ms
128,476 KB
testcase_13 AC 187 ms
114,816 KB
testcase_14 AC 274 ms
125,364 KB
testcase_15 AC 247 ms
132,652 KB
testcase_16 AC 211 ms
123,528 KB
testcase_17 AC 365 ms
146,636 KB
testcase_18 AC 412 ms
174,364 KB
testcase_19 AC 351 ms
170,456 KB
testcase_20 AC 483 ms
176,044 KB
testcase_21 AC 404 ms
177,616 KB
testcase_22 AC 439 ms
159,924 KB
testcase_23 AC 400 ms
182,536 KB
testcase_24 AC 366 ms
159,936 KB
testcase_25 AC 408 ms
182,588 KB
testcase_26 AC 448 ms
168,324 KB
testcase_27 AC 396 ms
172,600 KB
testcase_28 AC 218 ms
111,612 KB
testcase_29 AC 172 ms
108,496 KB
testcase_30 AC 425 ms
174,184 KB
testcase_31 AC 498 ms
180,756 KB
testcase_32 AC 519 ms
182,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n, m = LI()
aa = []
for a in LI(): aa += [1]*a+[0]
bb = []
for a in LI(): bb += [1]*a+[0]
n, m = len(aa), len(bb)

def chmin(i, j, val):
    if val < dp[i][j]: dp[i][j] = val

dp = [[inf]*(m+1) for _ in range(n+1)]
dp[0][0] = 0
for i in range(n+1):
    for j in range(m+1):
        pre = dp[i][j]
        if i < n and j < m: chmin(i+1, j+1, pre+(aa[i] ^ bb[j]))
        if i < n: chmin(i+1, j, pre+1)
        if j < m: chmin(i, j+1, pre+1)

print(dp[n][m])
0