結果

問題 No.2453 Seat Allocation
ユーザー ntudantuda
提出日時 2023-09-02 10:37:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 485 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 106,944 KB
最終ジャッジ日時 2024-06-11 17:18:40
合計ジャッジ時間 6,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,796 KB
testcase_01 AC 35 ms
52,816 KB
testcase_02 AC 36 ms
52,676 KB
testcase_03 RE -
testcase_04 AC 33 ms
53,312 KB
testcase_05 AC 211 ms
106,944 KB
testcase_06 AC 113 ms
91,204 KB
testcase_07 RE -
testcase_08 AC 88 ms
77,848 KB
testcase_09 AC 298 ms
98,132 KB
testcase_10 AC 293 ms
99,796 KB
testcase_11 AC 302 ms
99,032 KB
testcase_12 AC 176 ms
90,844 KB
testcase_13 AC 180 ms
90,880 KB
testcase_14 AC 97 ms
91,280 KB
testcase_15 AC 207 ms
90,820 KB
testcase_16 AC 213 ms
89,932 KB
testcase_17 AC 40 ms
53,360 KB
testcase_18 AC 245 ms
94,228 KB
testcase_19 AC 266 ms
97,140 KB
testcase_20 AC 142 ms
84,208 KB
testcase_21 AC 159 ms
86,164 KB
testcase_22 AC 202 ms
91,596 KB
testcase_23 RE -
testcase_24 AC 34 ms
53,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
Yuki 2453
Seat Allocation

Ai/Bj (i = 1..N, j = 1..M)
を降り順にソートしたときのk番目のiを答える。
'''
from heapq import *

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

X = [1] * N  # それぞれの政党、次何番目か
q = []
for i, a in enumerate(A):
    heappush(q, (-a / B[0], i))
for k in range(M):
    _, p = heappop(q)
    print(p + 1)
    heappush(q, (-A[p] / B[X[p]], p))
    X[p] += 1
0