結果

問題 No.2771 Personal Space
コンテスト
ユーザー mkawa2
提出日時 2024-05-31 23:44:17
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 1,363 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 125 ms
コンパイル使用メモリ 84,992 KB
実行使用メモリ 123,260 KB
最終ジャッジ日時 2026-05-27 20:08:12
合計ジャッジ時間 15,069 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys

# sys.setrecursionlimit(1000006)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from heapq import *

def solve():
    def push(l,r):
        if l>r:return
        if l==1:
            heappush(hp, (-r+1, 1, r))
        elif r==n:
            heappush(hp,(-n+l,l,n))
        else:
            heappush(hp,(-((r-l)//2),l,r))

    n,m=LI()
    hp=[]
    push(1,m-1)
    push(m+1,n)
    ans=[0]*(n+1)
    ans[m]=1
    for a in range(2,n+1):
        _,l,r=heappop(hp)
        if l==1:
            m=1
        elif r==n:
            m=n
        else:
            m=(l+r)//2
        ans[m]=a
        push(l,m-1)
        push(m+1,r)
    print(*ans[1:])

for _ in range(II()):solve()
0