結果

問題 No.2453 Seat Allocation
ユーザー hiro1729hiro1729
提出日時 2023-09-02 13:38:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 362 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 153,776 KB
最終ジャッジ日時 2024-06-11 20:16:36
合計ジャッジ時間 13,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
79,912 KB
testcase_01 AC 115 ms
79,816 KB
testcase_02 AC 114 ms
79,768 KB
testcase_03 AC 114 ms
80,128 KB
testcase_04 AC 125 ms
82,048 KB
testcase_05 AC 1,421 ms
145,212 KB
testcase_06 AC 807 ms
97,000 KB
testcase_07 AC 952 ms
118,032 KB
testcase_08 AC 716 ms
89,676 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 847 ms
96,080 KB
testcase_13 AC 962 ms
97,216 KB
testcase_14 AC 693 ms
96,312 KB
testcase_15 AC 1,204 ms
106,140 KB
testcase_16 AC 1,176 ms
99,880 KB
testcase_17 AC 134 ms
82,084 KB
testcase_18 AC 1,936 ms
129,036 KB
testcase_19 TLE -
testcase_20 AC 1,157 ms
109,860 KB
testcase_21 AC 1,421 ms
110,036 KB
testcase_22 AC 1,907 ms
122,628 KB
testcase_23 AC 114 ms
80,128 KB
testcase_24 AC 113 ms
80,060 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