結果

問題 No.1767 BLUE to RED
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-27 00:06:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 140,584 KB
最終ジャッジ日時 2024-06-29 18:50:42
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,948 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 39 ms
51,876 KB
testcase_04 AC 96 ms
58,240 KB
testcase_05 AC 42 ms
58,624 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 42 ms
60,416 KB
testcase_08 AC 44 ms
60,928 KB
testcase_09 AC 193 ms
107,568 KB
testcase_10 AC 232 ms
113,072 KB
testcase_11 AC 206 ms
114,428 KB
testcase_12 AC 197 ms
108,136 KB
testcase_13 AC 237 ms
115,228 KB
testcase_14 AC 290 ms
140,496 KB
testcase_15 AC 288 ms
140,064 KB
testcase_16 AC 297 ms
140,324 KB
testcase_17 AC 291 ms
140,060 KB
testcase_18 AC 288 ms
140,328 KB
testcase_19 AC 289 ms
140,064 KB
testcase_20 AC 295 ms
140,300 KB
testcase_21 AC 292 ms
140,200 KB
testcase_22 AC 291 ms
140,176 KB
testcase_23 AC 298 ms
140,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a = [(i, 0) for i in a]
b = [(i, 1) for i in b]
l = sorted(a + b)
que = []
INF = 10 ** 18
cur = -INF
ans = 0
for i, c in l:
	if c == 0:
		if not que: cur = i; continue
		if len(que) == 1: ans += min(i - min(que), max(que) - cur); cur = i; que = []; continue
		cost = min(max(que) - cur, i - min(que))
		mal, mir = -INF, que[0]
		for j in range(len(que)):
			mal = que[j]
			mir = que[j + 1] if j + 1 < len(que) else -INF
			cost = min(cost, (mal - cur) + (i - mir))
		ans += cost
		cur = i
		que = []
	else:
		que.append(i)
if que: ans += max(que) - cur; que = []
print(ans)
0