結果

問題 No.2453 Seat Allocation
ユーザー lloyzlloyz
提出日時 2023-09-04 01:22:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 723 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 110,364 KB
最終ジャッジ日時 2024-06-22 01:25:42
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,936 KB
testcase_01 AC 33 ms
52,680 KB
testcase_02 AC 38 ms
53,340 KB
testcase_03 RE -
testcase_04 AC 35 ms
54,448 KB
testcase_05 AC 234 ms
110,364 KB
testcase_06 AC 120 ms
90,596 KB
testcase_07 RE -
testcase_08 AC 105 ms
78,260 KB
testcase_09 AC 331 ms
105,708 KB
testcase_10 AC 329 ms
106,324 KB
testcase_11 AC 341 ms
106,576 KB
testcase_12 AC 179 ms
90,096 KB
testcase_13 AC 195 ms
90,748 KB
testcase_14 AC 102 ms
90,928 KB
testcase_15 AC 240 ms
90,756 KB
testcase_16 AC 236 ms
89,652 KB
testcase_17 AC 36 ms
54,932 KB
testcase_18 AC 252 ms
93,784 KB
testcase_19 AC 289 ms
100,436 KB
testcase_20 AC 164 ms
84,224 KB
testcase_21 AC 178 ms
85,928 KB
testcase_22 AC 230 ms
91,728 KB
testcase_23 AC 33 ms
53,356 KB
testcase_24 AC 34 ms
53,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

class T(object):
    def __init__(self, bunsi, bunbo, idx):
        self.bunsi = bunsi
        self.bunbo = bunbo
        self.idx = idx
    
    def __lt__(self, other):
        if other.bunbo * self.bunsi == self.bunbo * other.bunsi:
            return other.idx > self.idx
        else:
            return other.bunbo * self.bunsi > self.bunbo * other.bunsi

n, m = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

H = []
for i in range(n):
    heappush(H, T(A[i], B[0], i))
C = [0 for _ in range(n)]
for _ in range(m):
    t = heappop(H)
    idx = t.idx
    print(idx + 1)
    C[idx] += 1
    heappush(H, T(A[idx], B[C[idx]], idx))
0