結果

問題 No.2665 Minimize Inversions of Deque
ユーザー GOTKAKOGOTKAKO
提出日時 2024-03-08 21:21:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 2,088 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 210,188 KB
実行使用メモリ 8,204 KB
最終ジャッジ日時 2024-09-29 18:56:17
合計ジャッジ時間 6,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 91 ms
6,816 KB
testcase_02 AC 83 ms
6,820 KB
testcase_03 AC 79 ms
6,820 KB
testcase_04 AC 82 ms
6,816 KB
testcase_05 AC 81 ms
6,820 KB
testcase_06 AC 80 ms
6,816 KB
testcase_07 AC 81 ms
6,820 KB
testcase_08 AC 81 ms
6,816 KB
testcase_09 AC 82 ms
6,820 KB
testcase_10 AC 80 ms
6,816 KB
testcase_11 AC 81 ms
6,816 KB
testcase_12 AC 84 ms
6,816 KB
testcase_13 AC 81 ms
6,816 KB
testcase_14 AC 82 ms
6,820 KB
testcase_15 AC 81 ms
6,816 KB
testcase_16 AC 80 ms
6,820 KB
testcase_17 AC 79 ms
6,820 KB
testcase_18 AC 81 ms
6,820 KB
testcase_19 AC 14 ms
6,820 KB
testcase_20 AC 4 ms
6,820 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 78 ms
8,004 KB
testcase_31 AC 72 ms
6,816 KB
testcase_32 AC 76 ms
6,820 KB
testcase_33 AC 76 ms
7,884 KB
testcase_34 AC 73 ms
6,816 KB
testcase_35 AC 71 ms
8,204 KB
testcase_36 AC 70 ms
8,128 KB
testcase_37 AC 70 ms
6,816 KB
testcase_38 AC 72 ms
7,880 KB
testcase_39 AC 79 ms
8,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using SS = long long;
class SegmentTree{
    public:
    int siz = 1;
    vector<SS> dat;
 
    SS op(SS a, SS b){return a+b;}
    SS e(){return 0;}
    void renew (SS &a,SS x){
        //a = op(a,x);
        a = x;
        //その他.
    }
 
    void make(int N){
        while(siz < N) siz *= 2;
        dat.resize(siz*2,e());
    }
 
    void make2(int N,vector<SS> &A){
        make(N);
        for(int i=0; i<N; i++){
            int pos = i+siz;
            dat.at(pos) = A.at(i);
        }
        for(int i=siz-1; i>0; i--) dat.at(i) = op(dat.at(i*2),dat.at(i*2+1));
    }
 
    void update(int pos,SS x){
        pos = pos+siz;
        renew(dat.at(pos),x);
        while(pos != 1){
            pos = pos/2;
            dat.at(pos) = op(dat.at(pos*2),dat.at(pos*2+1));
        }
    }
 
    SS findans(int l, int r){
        SS ret = e();
        l += siz,r += siz;
        while(l < r){
            if(l&1) ret = op(ret,dat.at(l++));
            if(r&1) ret = op(ret,dat.at(--r));
            l >>= 1; r >>= 1;
        }
        return ret;
    }
 
    SS get(int pos){return dat.at(pos+siz);}
    SS rangeans(int l, int r){return findans(l,r);}
    SS allrange(){return findans(0,siz);}
 
    //ノーマルセグ木 二分探索は実装してない.
};

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

    int T; cin >> T;
    while(T--){
        int N; cin >> N;
        long long answer = 0;
        SegmentTree Z; Z.make(N);

        int a1; cin >> a1; a1--;
        deque<int> Q; Q.push_back(a1);
        Z.update(a1,1);
        for(int i=1; i<N; i++){
            int a; cin >> a; a--;
            int fr = Z.rangeans(0,a),ba = Z.rangeans(a,N);
            if(fr >= ba) answer += ba,Q.push_back(a);
            else answer += fr,Q.push_front(a);
            Z.update(a,1);
        }
        
        cout << answer << endl;
        for(int i=0; i<N; i++){
            if(i) cout << " ";
            cout << Q.front()+1;
            Q.pop_front();
        }
        cout << endl;
        
    }
}
0