結果

問題 No.2771 Personal Space
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-10 04:21:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 949 ms / 2,000 ms
コード長 2,321 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 105,996 KB
最終ジャッジ日時 2024-08-10 04:21:55
合計ジャッジ時間 25,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,992 KB
testcase_01 AC 873 ms
105,428 KB
testcase_02 AC 809 ms
105,712 KB
testcase_03 AC 829 ms
105,352 KB
testcase_04 AC 780 ms
105,448 KB
testcase_05 AC 817 ms
105,996 KB
testcase_06 AC 784 ms
105,452 KB
testcase_07 AC 793 ms
83,332 KB
testcase_08 AC 334 ms
92,940 KB
testcase_09 AC 770 ms
83,308 KB
testcase_10 AC 820 ms
98,304 KB
testcase_11 AC 883 ms
103,848 KB
testcase_12 AC 789 ms
101,376 KB
testcase_13 AC 949 ms
86,448 KB
testcase_14 AC 857 ms
84,424 KB
testcase_15 AC 753 ms
89,188 KB
testcase_16 AC 734 ms
90,568 KB
testcase_17 AC 789 ms
92,316 KB
testcase_18 AC 830 ms
83,972 KB
testcase_19 AC 868 ms
84,860 KB
testcase_20 AC 835 ms
102,956 KB
testcase_21 AC 821 ms
102,496 KB
testcase_22 AC 806 ms
101,884 KB
testcase_23 AC 888 ms
104,532 KB
testcase_24 AC 806 ms
101,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import heapq

class BinaryIndexTree:
    """
    フェニック木(BinaryIndexTree)の基本的な機能を実装したクラス
    """
    def __init__(self, size):
        self.size = size
        self.array = [0] * (size + 1)
    
    def add(self, x, a):
        index = x
        while index <= self.size:
            self.array[index] += a
            index += index & (-index)
    
    def sum(self, x):
        index = x
        ans = 0
        while index > 0:
            ans += self.array[index]
            index -= index & (-index)
        return ans

    def least_upper_bound(self, value):
        if self.sum(self.size) < value:
            return -1
        elif value <= 0:
            return 0

        m = 1
        while m < self.size:
            m *= 2

        k = 0
        k_sum = 0
        while m > 0:
            k0 = k + m
            if k0 < self.size:
                if k_sum + self.array[k0] < value:
                    k_sum += self.array[k0]
                    k += m
            m //= 2
        if k < self.size:
            return k + 1
        else:
            return -1


def solve(N, M):
    array = [-1] * N
    array[M - 1] = 1

    bit = BinaryIndexTree(N)
    bit.add(M, 1)

    queue = []
    if M > 1:
        heapq.heappush(queue, (-(M - 1), 1))
    if N > M:
        heapq.heappush(queue, (-(N - M), N))

    ind = 2
    while len(queue) > 0:
        _, v = heapq.heappop(queue)
        array[v - 1] = ind
        ind += 1

        # 左側計算
        l = bit.sum(v)
        if l > 0:
            left = bit.least_upper_bound(l)
            if v - left > 1:
                d = (v - left) // 2
                heapq.heappush(queue, (-d, left + d))
        
        # 右側の計算
        if l + 1 <= bit.sum(bit.size):
            right = bit.least_upper_bound(l + 1)
            if right - v > 1:
                d= (right - v) // 2
                heapq.heappush(queue, (-d, v + d))
        
        bit.add(v, 1)

    return " ".join(map(str, array))




def main():
    T = int(input())
    answers = []
    for _ in range(T):
        N, M = map(int, input().split())
        ans = solve(N, M)
        answers.append(ans)

    for ans in answers:
        print(ans)




    



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