結果

問題 No.2382 Amidakuji M
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-07-20 17:12:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,193 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 203,380 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-20 13:20:54
合計ジャッジ時間 4,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 29 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 33 ms
6,944 KB
testcase_07 AC 21 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 46 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 71 ms
6,940 KB
testcase_20 AC 71 ms
6,944 KB
testcase_21 AC 71 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

template<class T> struct BIT {
    vector<T> bit;
    int N;

    BIT (int n){
        N = n;
        bit.resize(N);
    }

    void add(int loc, T val){
        loc++;
        while(loc <= N){
            bit[loc-1] += val;
            loc += loc & -loc;
        }
    }

    T sum(int l, int r){
        T res = _sum(r) - _sum(l-1);
        return res;
    }

    T _sum(int r){
        r++;
        T res = 0;
        while(r > 0){
            res += bit[r-1];
            r -= r & -r;
        }
        return res;
    }
};

ll inversion_number(vector<ll> &A){
    ll d=0, mx=0;
    for (int i=0; i<A.size(); i++) mx = max(mx, A[i]);
    BIT<ll> tree(mx+1);

    for (int i=0; i<A.size(); i++){
        d += tree.sum(A[i]+1, mx);
        tree.add(A[i], 1);
    }

    return d;
}

int main(){

    ll N, M, I, K;
    cin >> N >> M;
    vector<ll> A(N);
    for (int i=0; i<N; i++) cin >> A[i];

    I = inversion_number(A);
    K = (I+M-1)/M;
    for (ll i=K; i<=K+10; i++){
        if ((M*K-I) % 2 == 0){
            cout << M*K << endl;
            return 0;
        }
    }

    cout << -1 << endl;

    return 0;
}
0