結果

問題 No.2771 Personal Space
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-31 22:44:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 212,648 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-31 22:44:24
合計ジャッジ時間 6,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 76 ms
12,544 KB
testcase_02 AC 74 ms
12,416 KB
testcase_03 AC 75 ms
12,544 KB
testcase_04 AC 75 ms
12,544 KB
testcase_05 AC 74 ms
12,544 KB
testcase_06 AC 73 ms
12,544 KB
testcase_07 AC 64 ms
6,940 KB
testcase_08 AC 57 ms
6,940 KB
testcase_09 AC 64 ms
6,944 KB
testcase_10 AC 68 ms
6,940 KB
testcase_11 AC 72 ms
8,960 KB
testcase_12 AC 73 ms
10,368 KB
testcase_13 AC 55 ms
6,940 KB
testcase_14 AC 63 ms
6,944 KB
testcase_15 AC 63 ms
6,940 KB
testcase_16 AC 62 ms
6,944 KB
testcase_17 AC 63 ms
6,944 KB
testcase_18 AC 63 ms
6,940 KB
testcase_19 AC 62 ms
6,940 KB
testcase_20 AC 73 ms
8,448 KB
testcase_21 AC 78 ms
9,088 KB
testcase_22 AC 77 ms
8,192 KB
testcase_23 AC 81 ms
12,032 KB
testcase_24 AC 74 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int T; cin >> T;
    while(T--){
        int N,M; cin >> N >> M;
        set<tuple<int,int,int>,greater<>> S;
        vector<int> A(N);
        A.at(M-1) = 1;
        if(M != 1) S.insert({M-1,0,-(M-2)});
        if(M != N) S.insert({N-M,-(M),-(N-1)});

        for(int i=2; i<=N; i++){
            auto[d,l,r] = *S.begin(); S.erase(S.begin());
            l *= -1; r *= -1;
            if(l == 0){
                A.at(l) = i;
                S.insert({(r+1)/2,-1,-r});
            }
            else if(r == N-1){
                A.at(r) = i;
                S.insert({((r-1)-l+2)/2,-l,-(r-1)});
            }
            else{
                int m = l+d-1;
                A.at(m) = i;
                if(l != m) S.insert({((m-1)-l+2)/2,-l,-(m-1)});
                if(m != r) S.insert({(r-(m+1)+2)/2,-(m+1),-r});
            }
        }
        for(int i=0; i<N; i++) cout << A.at(i) << (i==N-1?"\n":" ");
    }

}
0