結果

問題 No.2453 Seat Allocation
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-07-06 00:07:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 2,423 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,404 KB
最終ジャッジ日時 2024-07-06 00:07:50
合計ジャッジ時間 6,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,464 KB
testcase_04 AC 39 ms
53,004 KB
testcase_05 AC 276 ms
116,108 KB
testcase_06 AC 153 ms
90,880 KB
testcase_07 AC 177 ms
115,048 KB
testcase_08 AC 118 ms
80,640 KB
testcase_09 AC 414 ms
116,036 KB
testcase_10 AC 430 ms
116,400 KB
testcase_11 AC 460 ms
116,404 KB
testcase_12 AC 164 ms
90,496 KB
testcase_13 AC 169 ms
90,828 KB
testcase_14 AC 137 ms
91,012 KB
testcase_15 AC 199 ms
91,136 KB
testcase_16 AC 204 ms
89,824 KB
testcase_17 AC 40 ms
52,736 KB
testcase_18 AC 298 ms
95,744 KB
testcase_19 AC 373 ms
115,432 KB
testcase_20 AC 197 ms
92,160 KB
testcase_21 AC 234 ms
89,856 KB
testcase_22 AC 263 ms
93,568 KB
testcase_23 AC 39 ms
52,224 KB
testcase_24 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2453

MAXINT = 10 ** 9 + 7

class SegmentTree:
    """
    非再帰版セグメント木。
    更新は「加法」、取得は「最大値」のもの限定。
    """

    def __init__(self, init_array):
        n = 1
        while n < len(init_array):
            n *= 2
        
        self.size = n
        self.array = [[-MAXINT, 1, MAXINT] for _ in range(2 * self.size)]
        for i, a in enumerate(init_array):
            self.array[self.size + i] = a
        
        end_index = self.size
        start_index = end_index // 2
        while start_index >= 1:
            for i in range(start_index, end_index):
                self._op(self.array[i], self.array[2 * i], self.array[2 * i + 1])
            end_index = start_index
            start_index = end_index // 2

    def _op(self, array, left, right):
        l_a = left[0]
        l_b = left[1]
        r_a = right[0]
        r_b = right[1]
        if l_a * r_b > r_a * l_b:
            array[0] = l_a
            array[1] = l_b
            array[2] = left[2]
        elif l_a * r_b < r_a * l_b:
            array[0] = r_a
            array[1] = r_b
            array[2] = right[2]
        else:
            array[0] = left[0]
            array[1] = left[1]
            array[2] = min(left[2], right[2])

    def set(self, x, b):
        index = self.size + x
        self.array[index][1] = b
        while index > 1:
            index //= 2
            self._op(self.array[index], self.array[2 * index], self.array[2 * index + 1])

    def get_max(self, l, r):
        L = self.size + l; R = self.size + r

        # 2. 区間[l, r)の最大値を求める
        s = [-MAXINT, 1, MAXINT]
        while L < R:
            if R & 1:
                R -= 1
                self._op(s, s, self.array[R])
            if L & 1:
                self._op(s, s, self.array[L])
                L += 1
            L >>= 1; R >>= 1
        return s


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

    index_list = [0] * N
    array = [[A[i], B[0], i] for i in range(N)]

    seg_tree = SegmentTree(array)
    for _ in range(M):
        a, _, j = seg_tree.get_max(0, N)
        print(j + 1)

        index_list[j] += 1
        if index_list[j] < M:
            seg_tree.set(j, B[index_list[j]])






if __name__ == '__main__':
    main()
0