結果

問題 No.1467 Selling Cars
ユーザー QCFiumQCFium
提出日時 2021-03-12 11:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,754 ms / 4,000 ms
コード長 1,134 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 270,336 KB
最終ジャッジ日時 2024-10-14 07:52:00
合計ジャッジ時間 26,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,754 ms
270,336 KB
testcase_01 AC 1,309 ms
268,928 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 1,026 ms
235,892 KB
testcase_04 AC 1,086 ms
236,880 KB
testcase_05 AC 1,038 ms
236,096 KB
testcase_06 AC 1,052 ms
236,160 KB
testcase_07 AC 1,042 ms
237,300 KB
testcase_08 AC 1,042 ms
236,416 KB
testcase_09 AC 49 ms
63,104 KB
testcase_10 AC 49 ms
62,720 KB
testcase_11 AC 662 ms
163,800 KB
testcase_12 AC 834 ms
200,212 KB
testcase_13 AC 769 ms
184,576 KB
testcase_14 AC 173 ms
86,604 KB
testcase_15 AC 312 ms
125,568 KB
testcase_16 AC 273 ms
98,036 KB
testcase_17 AC 624 ms
152,704 KB
testcase_18 AC 766 ms
184,832 KB
testcase_19 AC 1,649 ms
270,208 KB
testcase_20 AC 982 ms
244,096 KB
testcase_21 AC 902 ms
236,416 KB
testcase_22 AC 1,598 ms
267,956 KB
testcase_23 AC 1,128 ms
263,936 KB
testcase_24 AC 978 ms
248,296 KB
testcase_25 AC 148 ms
83,592 KB
testcase_26 AC 457 ms
149,632 KB
testcase_27 AC 400 ms
119,220 KB
testcase_28 AC 924 ms
186,368 KB
testcase_29 AC 210 ms
94,764 KB
testcase_30 AC 211 ms
90,896 KB
testcase_31 AC 41 ms
53,632 KB
testcase_32 AC 42 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

def fast_one(a, b, k) :
	n = len(a)
	m = len(b)
	
	used = [collections.deque() for i in range(n + 1)]
	
	closest = 0
	for i in range(m) :
		while closest + 1 < n and abs(b[i] - a[closest]) >= abs(b[i] - a[closest + 1]) : closest += 1
		if len(used[closest]) == k :
			r = closest
			l = closest
			while l and len(used[l - 1]) == k : l -= 1
			while r + 1 < n and len(used[r + 1]) == k : r += 1
			r += 1
			used[r].append(i)
			
			shift_delta = 0
			for j in range(l, r + 1) : shift_delta += abs(a[j - 1] - b[used[j][0]]) - abs(a[j] - b[used[j][0]])
			if shift_delta < 0 :
				for j in range(l, r + 1) :
					used[j - 1].append(used[j][0])
					used[j].popleft()
		else : used[closest].append(i)
	
	res = 0
	for i in range(n) :
		for j in used[i] : res += abs(a[i] - b[j])
	
	return res

def fast(a, b) :
	a.sort()
	b.sort()
	a = [-1000000000000000000] + a + [1000000000000000000]
	
	res = []
	for i in range(1, m + 1) : res.append(fast_one(a, b, i))
	return res

m, n = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

res = fast(b, a)
for i in res : print(i)
0