結果
問題 | No.2771 Personal Space |
ユーザー | ニックネーム |
提出日時 | 2024-05-31 22:54:58 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 408 ms |
コンパイル使用メモリ | 82,492 KB |
実行使用メモリ | 165,672 KB |
最終ジャッジ日時 | 2024-05-31 22:55:03 |
合計ジャッジ時間 | 4,290 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
60,292 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
from heapq import heappop,heappush for _ in range(int(input())): n,m = map(int,input().split()) m-= 1; p = [0]*n; p[m] = 1; h = [] q = list(range(m,0,-1))+list(range(n-m)) for i,v in enumerate(q): heappush(h,(-v,i)) for j in range(2,n+1): while 1: v,i = heappop(h) if q[i]==-v: break p[i] = j; q[i] = 0 for k in range(i-1,-1,-1): if q[k]<=i-k: break q[k] = i-k; heappush(h,(-q[k],k)) for k in range(i+1,n): if q[k]<=k-i: break q[k] = k-i; heappush(h,(-q[k],k)) print(*p)