結果

問題 No.2771 Personal Space
ユーザー Nzt3Nzt3
提出日時 2024-06-01 16:59:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 3,043 ms
コンパイル使用メモリ 256,296 KB
実行使用メモリ 21,372 KB
最終ジャッジ日時 2024-06-01 17:00:04
合計ジャッジ時間 10,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 246 ms
20,992 KB
testcase_02 AC 244 ms
21,372 KB
testcase_03 AC 244 ms
20,732 KB
testcase_04 AC 242 ms
21,244 KB
testcase_05 AC 243 ms
20,992 KB
testcase_06 AC 243 ms
20,876 KB
testcase_07 AC 156 ms
6,944 KB
testcase_08 AC 77 ms
6,944 KB
testcase_09 AC 163 ms
6,940 KB
testcase_10 AC 204 ms
7,840 KB
testcase_11 AC 239 ms
14,424 KB
testcase_12 AC 239 ms
17,160 KB
testcase_13 AC 118 ms
6,940 KB
testcase_14 AC 187 ms
6,940 KB
testcase_15 AC 175 ms
6,944 KB
testcase_16 AC 176 ms
6,944 KB
testcase_17 AC 182 ms
6,940 KB
testcase_18 AC 161 ms
6,948 KB
testcase_19 AC 154 ms
6,940 KB
testcase_20 AC 235 ms
13,876 KB
testcase_21 AC 223 ms
13,328 KB
testcase_22 AC 226 ms
13,052 KB
testcase_23 AC 252 ms
20,900 KB
testcase_24 AC 226 ms
16,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
void solve();
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int test_case;
  cin>>test_case;
  while (test_case--){
    solve();
  }
}
void solve(){
  int N,M;
  cin>>N>>M;
  M-=1;
  set<int>done;
  priority_queue<array<int,2>>pq;
  pq.push({0,-M});
  vector ans(N,0);
  int cnt=0;
  while(pq.size()){
    int v=-pq.top()[1],d=pq.top()[0];
    pq.pop();
    int l=-N,r=N*2;
    if(done.contains(v))continue;
    auto it0=done.upper_bound(v);
    if(it0!=done.end())r=*it0;
    auto it1=done.lower_bound(v);
    if(it1!=done.begin()){
      it1--;
      l=*it1;
    }
    if(d>min(v-l,r-v))continue;
    ans[v]=++cnt;
    done.insert(v);
    if(l==-N){
      pq.push({v,0});
    }else{
      pq.push({(v-l)/2,-(l+(v-l)/2)});
    }
    if(r==N*2){
      pq.push({N-1-v,-(N-1)});
    }else{
      pq.push({(r-v)/2,-(v+(r-v)/2)});
    }
  }
  rep(i,N){
    if(i)cout<<' ';
    cout<<ans[i];
  }
  cout<<'\n';
}
0