結果

問題 No.2453 Seat Allocation
ユーザー ntudantuda
提出日時 2023-09-02 10:39:45
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 491 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 108,900 KB
最終ジャッジ日時 2024-06-11 17:53:45
合計ジャッジ時間 5,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,480 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 223 ms
108,900 KB
testcase_06 AC 115 ms
92,288 KB
testcase_07 AC 105 ms
93,468 KB
testcase_08 AC 87 ms
77,952 KB
testcase_09 AC 310 ms
99,072 KB
testcase_10 AC 310 ms
99,520 KB
testcase_11 AC 319 ms
99,704 KB
testcase_12 AC 179 ms
92,580 KB
testcase_13 AC 193 ms
92,288 KB
testcase_14 AC 99 ms
93,056 KB
testcase_15 AC 215 ms
92,288 KB
testcase_16 AC 215 ms
91,416 KB
testcase_17 AC 35 ms
52,736 KB
testcase_18 AC 246 ms
96,000 KB
testcase_19 AC 269 ms
97,024 KB
testcase_20 AC 150 ms
84,864 KB
testcase_21 AC 164 ms
87,552 KB
testcase_22 AC 212 ms
93,452 KB
testcase_23 WA -
testcase_24 AC 34 ms
52,480 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())) + [1]

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