結果

問題 No.2453 Seat Allocation
ユーザー lloyzlloyz
提出日時 2023-09-04 01:22:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,544 KB
最終ジャッジ日時 2024-06-25 09:37:46
合計ジャッジ時間 6,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 285 ms
110,544 KB
testcase_06 AC 144 ms
90,624 KB
testcase_07 AC 134 ms
94,160 KB
testcase_08 AC 126 ms
78,524 KB
testcase_09 AC 428 ms
105,564 KB
testcase_10 AC 416 ms
106,264 KB
testcase_11 AC 431 ms
106,644 KB
testcase_12 AC 222 ms
90,496 KB
testcase_13 AC 233 ms
90,936 KB
testcase_14 AC 117 ms
90,624 KB
testcase_15 AC 283 ms
90,660 KB
testcase_16 AC 284 ms
89,472 KB
testcase_17 AC 43 ms
53,248 KB
testcase_18 AC 324 ms
93,696 KB
testcase_19 AC 378 ms
100,408 KB
testcase_20 AC 205 ms
83,968 KB
testcase_21 AC 226 ms
85,504 KB
testcase_22 AC 289 ms
90,880 KB
testcase_23 AC 40 ms
52,992 KB
testcase_24 AC 41 ms
52,224 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
    if C[idx] == m:
        continue
    heappush(H, T(A[idx], B[C[idx]], idx))
0