結果

問題 No.2453 Seat Allocation
ユーザー hiro1729hiro1729
提出日時 2023-09-02 08:10:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 316 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 33,384 KB
最終ジャッジ日時 2024-06-11 17:53:37
合計ジャッジ時間 8,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 491 ms
33,384 KB
testcase_06 AC 253 ms
21,556 KB
testcase_07 AC 152 ms
26,240 KB
testcase_08 AC 72 ms
12,800 KB
testcase_09 AC 676 ms
32,760 KB
testcase_10 AC 672 ms
32,912 KB
testcase_11 AC 693 ms
32,836 KB
testcase_12 AC 249 ms
21,676 KB
testcase_13 AC 290 ms
21,684 KB
testcase_14 AC 238 ms
21,548 KB
testcase_15 AC 312 ms
21,728 KB
testcase_16 AC 273 ms
20,904 KB
testcase_17 AC 32 ms
10,624 KB
testcase_18 AC 468 ms
21,912 KB
testcase_19 AC 539 ms
27,792 KB
testcase_20 AC 212 ms
18,372 KB
testcase_21 AC 274 ms
18,372 KB
testcase_22 AC 407 ms
21,860 KB
testcase_23 WA -
testcase_24 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
d = [1] * n
h = [(-x / b[0], i) for i, x in enumerate(a)]
heapify(h)
while m:
	_, k = heappop(h)
	print(k + 1)
	m -= 1
	j = d[k]
	d[k] = j + 1
	if j < len(b):
		heappush(h, (-a[k] / b[j], k))
0