結果

問題 No.2453 Seat Allocation
ユーザー ntudantuda
提出日時 2023-09-09 14:04:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 679 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 149,140 KB
最終ジャッジ日時 2024-06-27 07:00:20
合計ジャッジ時間 30,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
79,872 KB
testcase_01 AC 111 ms
79,996 KB
testcase_02 AC 123 ms
80,000 KB
testcase_03 AC 111 ms
79,744 KB
testcase_04 AC 120 ms
81,152 KB
testcase_05 AC 1,732 ms
144,060 KB
testcase_06 AC 1,093 ms
96,896 KB
testcase_07 AC 1,012 ms
119,148 KB
testcase_08 AC 796 ms
90,776 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,104 ms
96,848 KB
testcase_13 AC 1,230 ms
97,024 KB
testcase_14 AC 812 ms
95,872 KB
testcase_15 AC 1,673 ms
112,048 KB
testcase_16 AC 1,649 ms
104,576 KB
testcase_17 AC 132 ms
81,792 KB
testcase_18 AC 1,820 ms
125,620 KB
testcase_19 TLE -
testcase_20 AC 1,158 ms
109,696 KB
testcase_21 AC 1,309 ms
110,856 KB
testcase_22 AC 1,667 ms
120,792 KB
testcase_23 AC 115 ms
79,872 KB
testcase_24 AC 112 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
Yuki 2453
Seat Allocation

Ai/Bj (i = 1..N, j = 1..M)
を降り順にソートしたときのk番目のiを答える。
Challengeでfloatの割り算を着かれたのでDecimalにしてみる。
'''
from heapq import *
from decimal import Decimal

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):
    b = Decimal(str(B[0]))
    heappush(q, (b / Decimal(str(a)), i))
for i in range(M):
    _, p = heappop(q)
    print(p + 1)
    if X[p] < M:
        heappush(q, (Decimal(str(B[X[p]])) / Decimal(str(A[p])), p))
        X[p] += 1

0