結果

問題 No.2453 Seat Allocation
ユーザー hiro1729hiro1729
提出日時 2023-09-02 13:37:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 930 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-06-25 09:37:08
合計ジャッジ時間 10,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 34 ms
11,136 KB
testcase_02 AC 32 ms
11,264 KB
testcase_03 AC 34 ms
11,136 KB
testcase_04 AC 33 ms
11,264 KB
testcase_05 AC 723 ms
41,572 KB
testcase_06 AC 352 ms
21,980 KB
testcase_07 AC 235 ms
34,592 KB
testcase_08 AC 98 ms
14,080 KB
testcase_09 AC 910 ms
41,132 KB
testcase_10 AC 930 ms
41,092 KB
testcase_11 AC 914 ms
41,220 KB
testcase_12 AC 333 ms
22,312 KB
testcase_13 AC 381 ms
21,976 KB
testcase_14 AC 294 ms
22,308 KB
testcase_15 AC 432 ms
22,032 KB
testcase_16 AC 377 ms
21,212 KB
testcase_17 AC 32 ms
11,264 KB
testcase_18 AC 651 ms
25,504 KB
testcase_19 AC 750 ms
34,400 KB
testcase_20 AC 302 ms
21,328 KB
testcase_21 AC 398 ms
19,016 KB
testcase_22 AC 598 ms
22,212 KB
testcase_23 AC 33 ms
11,136 KB
testcase_24 AC 32 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
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 = [(-Decimal(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, (-Decimal(a[k]) / b[j], k))
0