結果

問題 No.2771 Personal Space
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-15 20:22:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,257 bytes
コンパイル時間 6,055 ms
コンパイル使用メモリ 312,152 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-06-15 20:23:06
合計ジャッジ時間 14,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 87 ms
12,924 KB
testcase_02 AC 81 ms
12,860 KB
testcase_03 AC 89 ms
13,004 KB
testcase_04 AC 82 ms
12,892 KB
testcase_05 AC 82 ms
13,632 KB
testcase_06 AC 83 ms
13,120 KB
testcase_07 AC 56 ms
6,944 KB
testcase_08 AC 280 ms
6,940 KB
testcase_09 AC 56 ms
6,944 KB
testcase_10 AC 69 ms
6,940 KB
testcase_11 AC 83 ms
8,380 KB
testcase_12 AC 78 ms
8,980 KB
testcase_13 AC 65 ms
6,944 KB
testcase_14 AC 58 ms
6,940 KB
testcase_15 AC 63 ms
6,940 KB
testcase_16 AC 64 ms
6,940 KB
testcase_17 AC 64 ms
6,944 KB
testcase_18 AC 58 ms
6,944 KB
testcase_19 AC 58 ms
6,940 KB
testcase_20 AC 76 ms
8,444 KB
testcase_21 AC 79 ms
7,976 KB
testcase_22 AC 75 ms
7,996 KB
testcase_23 AC 83 ms
12,872 KB
testcase_24 AC 75 ms
8,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int t;cin>>t;
  rep(z,t){
    int n,m;cin>>n>>m;
    m--;
    auto merge=[&](vc<pp>a,vc<pp>b,pp x)->vc<pp>{
      vc<pp>res={x};
      int j=0;
      rep(i,a.size()){
        while(j<(int)b.size()){
          if(b[j].se<=a[i].se)break;
          res.pb(b[j]);
          j++;
        }
        res.pb(a[i]);
      }
      for(;j<(int)b.size();j++)res.pb(b[j]);
      return res;
    };
    auto f=[&](auto f,int l,int r)->vc<pp>{
      if(l>r){
        return {};
      } 
      if(l==0)return merge(f(f,1,r),{},{0,m});
      if(r==n-1)return merge(f(f,l,n-2),{},{n-1,n-1-m});
      int a=(l+r)/2;
      return merge(f(f,l,a-1),f(f,a+1,r),{a,a-(l-1)});
    };
    auto ans=merge(f(f,0,m-1),f(f,m+1,n-1),{m,0});
    vc<int>r(n); rep(i,n)r[i]=i;
    rep(i,n)r[ans[i].fi]=i;
    rep(i,n)cout<<r[i]+1<<' ';
    cout<<"\n";
  }
}
      
0