結果

問題 No.2771 Personal Space
ユーザー nikoro256nikoro256
提出日時 2024-06-01 02:06:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,197 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 129,688 KB
最終ジャッジ日時 2024-12-21 04:19:09
合計ジャッジ時間 27,142 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,396 KB
testcase_01 AC 1,164 ms
129,160 KB
testcase_02 AC 1,146 ms
128,596 KB
testcase_03 AC 1,175 ms
129,572 KB
testcase_04 AC 1,169 ms
129,320 KB
testcase_05 AC 1,179 ms
129,688 KB
testcase_06 AC 1,197 ms
129,576 KB
testcase_07 AC 610 ms
78,216 KB
testcase_08 AC 499 ms
77,236 KB
testcase_09 AC 612 ms
78,048 KB
testcase_10 AC 1,015 ms
112,380 KB
testcase_11 AC 1,173 ms
121,528 KB
testcase_12 AC 1,130 ms
115,480 KB
testcase_13 AC 595 ms
78,732 KB
testcase_14 AC 628 ms
78,620 KB
testcase_15 AC 701 ms
82,276 KB
testcase_16 AC 687 ms
83,208 KB
testcase_17 AC 789 ms
88,364 KB
testcase_18 AC 628 ms
77,820 KB
testcase_19 AC 634 ms
78,696 KB
testcase_20 AC 1,165 ms
120,836 KB
testcase_21 AC 1,129 ms
120,652 KB
testcase_22 AC 1,146 ms
119,404 KB
testcase_23 AC 1,194 ms
127,968 KB
testcase_24 AC 1,167 ms
120,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    ans = [-1] * N
    ans[M - 1] = 1
    hq = []
    # (distance,pos,left,right)
    if M - 1 != 0:
        heapq.heappush(hq, (-(M - 1), 0, -1, M - 1))
    if M != N:
        heapq.heappush(hq, (-(N - M), N - 1, M - 1, -1))
    count = 1
    while len(hq) != 0:
        count += 1
        dis, pos, left, right = heapq.heappop(hq)
        ans[pos] = count
        if left != -1 and pos - left != 1:
            next = (pos + left) // 2
            heapq.heappush(hq, (-(next - left), next, left, pos))
        if right != -1 and right - pos != 1:
            next = (pos + right) // 2
            heapq.heappush(hq, (-(next - pos), next, pos, right))
    print(*ans)
0