結果

問題 No.2453 Seat Allocation
ユーザー hiro1729hiro1729
提出日時 2023-09-02 13:34:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,384 KB
最終ジャッジ日時 2024-06-11 20:12:31
合計ジャッジ時間 7,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 443 ms
33,384 KB
testcase_06 AC 241 ms
21,556 KB
testcase_07 AC 141 ms
26,184 KB
testcase_08 AC 64 ms
12,928 KB
testcase_09 AC 556 ms
32,724 KB
testcase_10 AC 561 ms
32,784 KB
testcase_11 AC 580 ms
33,100 KB
testcase_12 AC 225 ms
21,676 KB
testcase_13 AC 259 ms
21,556 KB
testcase_14 AC 216 ms
21,672 KB
testcase_15 AC 278 ms
21,600 KB
testcase_16 AC 244 ms
20,904 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 350 ms
21,912 KB
testcase_19 AC 444 ms
27,840 KB
testcase_20 AC 165 ms
18,424 KB
testcase_21 AC 225 ms
18,496 KB
testcase_22 AC 311 ms
21,916 KB
testcase_23 WA -
testcase_24 AC 26 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] * 100000, 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] * 100000, k))
0