結果

問題 No.2453 Seat Allocation
ユーザー noriocnorioc
提出日時 2023-09-06 02:01:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,540 KB
最終ジャッジ日時 2024-06-25 09:38:58
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,992 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 291 ms
120,260 KB
testcase_06 AC 133 ms
90,496 KB
testcase_07 AC 136 ms
96,600 KB
testcase_08 AC 116 ms
78,556 KB
testcase_09 AC 470 ms
118,868 KB
testcase_10 AC 455 ms
120,540 KB
testcase_11 AC 468 ms
120,272 KB
testcase_12 AC 213 ms
90,312 KB
testcase_13 AC 205 ms
90,240 KB
testcase_14 AC 109 ms
91,080 KB
testcase_15 AC 261 ms
90,512 KB
testcase_16 AC 254 ms
89,840 KB
testcase_17 AC 39 ms
52,992 KB
testcase_18 AC 340 ms
102,340 KB
testcase_19 AC 420 ms
111,488 KB
testcase_20 AC 209 ms
86,972 KB
testcase_21 AC 211 ms
89,536 KB
testcase_22 AC 307 ms
98,972 KB
testcase_23 AC 37 ms
52,608 KB
testcase_24 AC 37 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop


class Frac:
    def __init__(self, num, den, index):
        self.num = -num
        self.den = den
        self.index = index

    def __lt__(self, other):
        a = self.num * other.den
        b = other.num * self.den
        if a == b:
            return self.index < other.index
        return a < b


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

B.sort()

q = []  # (score, a-index, b-index)
for i, a in enumerate(A):
    heappush(q, (Frac(a, B[0], i), 0))

ans = []
for _ in range(M):
    x, b_index = heappop(q)
    # print(f'{x.num}/{x.den} {a_index=} {b_index=}')
    ans.append(x.index + 1)
    if b_index+1 < M:
        frac = Frac(A[x.index], B[b_index+1], x.index)
        heappush(q, (frac, b_index+1))

print(*ans, sep='\n')
0