結果

問題 No.2453 Seat Allocation
ユーザー ntudantuda
提出日時 2023-09-09 14:14:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,068 KB
最終ジャッジ日時 2024-06-27 07:08:54
合計ジャッジ時間 8,255 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 334 ms
111,496 KB
testcase_06 AC 153 ms
90,752 KB
testcase_07 AC 150 ms
96,288 KB
testcase_08 AC 113 ms
78,208 KB
testcase_09 AC 581 ms
111,656 KB
testcase_10 AC 562 ms
110,784 KB
testcase_11 AC 567 ms
112,068 KB
testcase_12 AC 211 ms
91,100 KB
testcase_13 AC 219 ms
90,696 KB
testcase_14 AC 129 ms
91,024 KB
testcase_15 AC 260 ms
90,624 KB
testcase_16 AC 357 ms
89,764 KB
testcase_17 AC 40 ms
53,092 KB
testcase_18 AC 393 ms
95,056 KB
testcase_19 AC 489 ms
103,968 KB
testcase_20 AC 223 ms
85,888 KB
testcase_21 AC 249 ms
86,144 KB
testcase_22 AC 339 ms
91,868 KB
testcase_23 AC 42 ms
52,992 KB
testcase_24 AC 42 ms
52,992 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()))
F = 10 ** 20

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