結果

問題 No.2453 Seat Allocation
ユーザー fiblonariafiblonaria
提出日時 2023-09-05 14:53:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,461 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,772 KB
最終ジャッジ日時 2024-06-23 10:30:53
合計ジャッジ時間 11,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 805 ms
107,408 KB
testcase_06 AC 215 ms
92,416 KB
testcase_07 AC 360 ms
91,372 KB
testcase_08 AC 214 ms
79,120 KB
testcase_09 AC 1,037 ms
107,676 KB
testcase_10 AC 1,135 ms
108,772 KB
testcase_11 AC 1,138 ms
108,128 KB
testcase_12 AC 243 ms
92,780 KB
testcase_13 AC 345 ms
92,672 KB
testcase_14 AC 145 ms
92,160 KB
testcase_15 AC 429 ms
92,288 KB
testcase_16 AC 323 ms
91,648 KB
testcase_17 AC 40 ms
53,120 KB
testcase_18 AC 746 ms
94,976 KB
testcase_19 AC 813 ms
102,008 KB
testcase_20 AC 360 ms
86,016 KB
testcase_21 AC 430 ms
86,780 KB
testcase_22 AC 579 ms
92,972 KB
testcase_23 WA -
testcase_24 AC 39 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class heap:
    #comp:比較関数 小さいものから順に取り出す
    def __init__(s, comp = lambda x:x):
        s.comp = comp
        s.values = []
    #index と 子供たちの位置関係を調整
    def adjust(s, index):
        next = None
        cur = s.comp(s.values[index])
        for i in range(index * 2 + 1, min(index * 2 + 3, len(s.values))):
            if cur > s.comp(s.values[i]):
                next = i
                cur = s.comp(s.values[i])
        if next != None:
            s.values[index], s.values[next] = s.values[next], s.values[index]
            return next
        else:
            return None
    def push(s, value):
        s.values.append(value)
        index = (len(s.values) - 2) // 2
        while index >= 0:
            s.adjust(index)
            index = (index - 1) // 2
    def pop(s):
        if len(s.values) == 0:
            return None
        if len(s.values) == 1:
            return s.values.pop()
        ret = s.values[0]
        s.values[0] = s.values.pop()
        index = 0
        while index != None:
            index = s.adjust(index)
        return ret
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split())) + [1]
number = [0 for i in range(N)]
H = heap()
for i in range(N):
	H.push((-(A[i] / B[0]), i))
for i in range(M):
	cur = H.pop()
	number[cur[1]] += 1
	print(cur[1] + 1)
	H.push((-(A[cur[1]] / B[number[cur[1]]]), cur[1]))
0