結果

問題 No.2453 Seat Allocation
ユーザー KudeKude
提出日時 2023-09-01 21:47:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,334 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 121,292 KB
最終ジャッジ日時 2024-06-25 09:23:57
合計ジャッジ時間 15,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
88,600 KB
testcase_01 AC 134 ms
88,832 KB
testcase_02 AC 131 ms
88,820 KB
testcase_03 AC 132 ms
88,572 KB
testcase_04 AC 133 ms
88,552 KB
testcase_05 AC 805 ms
120,636 KB
testcase_06 AC 442 ms
103,988 KB
testcase_07 AC 387 ms
110,452 KB
testcase_08 AC 410 ms
94,352 KB
testcase_09 AC 1,334 ms
121,292 KB
testcase_10 AC 1,301 ms
120,432 KB
testcase_11 AC 1,300 ms
121,200 KB
testcase_12 AC 544 ms
103,584 KB
testcase_13 AC 540 ms
103,888 KB
testcase_14 AC 316 ms
103,336 KB
testcase_15 AC 707 ms
103,856 KB
testcase_16 AC 567 ms
103,240 KB
testcase_17 AC 133 ms
88,600 KB
testcase_18 AC 1,007 ms
110,200 KB
testcase_19 AC 1,105 ms
114,596 KB
testcase_20 AC 590 ms
101,408 KB
testcase_21 AC 720 ms
101,568 KB
testcase_22 AC 927 ms
107,252 KB
testcase_23 AC 128 ms
88,692 KB
testcase_24 AC 127 ms
88,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappushpop, heapify
from fractions import Fraction
n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
b.append(1)
q = [(-Fraction(a[i], b[0]), i) for i in range(n)]
now = [0] * n
heapify(q)
for _ in range(m):
    _, i = q[0]
    print(i + 1)
    now[i] += 1
    heappushpop(q, (-Fraction(a[i], b[now[i]]), i))
0