結果

問題 No.2665 Minimize Inversions of Deque
ユーザー t98slidert98slider
提出日時 2024-04-27 16:49:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 4,507 ms
コンパイル使用メモリ 265,244 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-15 20:39:11
合計ジャッジ時間 9,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 32 ms
6,820 KB
testcase_02 AC 31 ms
6,820 KB
testcase_03 AC 41 ms
6,816 KB
testcase_04 AC 31 ms
6,816 KB
testcase_05 AC 31 ms
6,820 KB
testcase_06 AC 30 ms
6,816 KB
testcase_07 AC 31 ms
6,816 KB
testcase_08 AC 30 ms
6,816 KB
testcase_09 AC 30 ms
6,816 KB
testcase_10 AC 31 ms
6,816 KB
testcase_11 AC 31 ms
6,820 KB
testcase_12 AC 30 ms
6,820 KB
testcase_13 AC 31 ms
6,816 KB
testcase_14 AC 31 ms
6,816 KB
testcase_15 AC 31 ms
6,820 KB
testcase_16 AC 31 ms
6,816 KB
testcase_17 AC 30 ms
6,816 KB
testcase_18 AC 31 ms
6,820 KB
testcase_19 AC 6 ms
6,816 KB
testcase_20 AC 3 ms
6,820 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 42 ms
6,820 KB
testcase_31 AC 39 ms
6,820 KB
testcase_32 AC 40 ms
6,820 KB
testcase_33 AC 42 ms
6,816 KB
testcase_34 AC 39 ms
6,816 KB
testcase_35 AC 39 ms
6,820 KB
testcase_36 AC 39 ms
6,820 KB
testcase_37 AC 38 ms
6,820 KB
testcase_38 AC 39 ms
6,816 KB
testcase_39 AC 41 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T;
    cin >> T;
    deque<int> dq;
    while(T--){
        int n, v, s;
        long long ans = 0;
        cin >> n;
        dq.clear();
        atcoder::fenwick_tree<int> fw(n);
        for(int i = 0; i < n; i++){
            cin >> v;
            s = fw.sum(0, --v);
            if(s < i - s){
                ans += s;
                dq.emplace_front(v);
            }else{
                ans += i - s;
                dq.emplace_back(v);
            }
            fw.add(v, 1);
        }
        cout << ans << '\n';
        for(int i = 0; i < n; i++){
            cout << dq[i] + 1 << (i + 1 == n ? '\n' : ' ');
        }
    }
}
0