結果

問題 No.2382 Amidakuji M
ユーザー Today03Today03
提出日時 2023-07-14 23:00:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 203,288 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 08:08:12
合計ジャッジ時間 3,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 28 ms
5,248 KB
testcase_04 AC 49 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 31 ms
5,376 KB
testcase_07 AC 20 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 43 ms
5,376 KB
testcase_10 AC 62 ms
5,376 KB
testcase_11 AC 23 ms
5,376 KB
testcase_12 AC 43 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 68 ms
5,376 KB
testcase_20 AC 67 ms
5,376 KB
testcase_21 AC 66 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <atcoder/fenwicktree>
long long inversion_number(vector<int> &a) {
  int n=a.size();
  atcoder::fenwick_tree<int> ft(n);
  long long ret=0;
  for (int i=0;i<n;i++) {
    ret+=i-ft.sum(0,a[i]);
    ft.add(a[i],1);
  }
  return ret;
}

int main() {
  int n;
  long long m;
  cin>>n>>m;
  vector<int> p(n);
  for (int i=0;i<n;i++) {
    cin>>p[i];
    p[i]--;
  }
  long long in=inversion_number(p);
  if (in==0) {
    cout<<0<<endl;
    return 0;
  }
  else if (in%2==1&&m%2==0) {
    cout<<-1<<endl;
    return 0;
  }
  long long tmp=(in+m-1)/m*m;
  while ((tmp-in)%2!=0) {
    tmp+=m;
  }
  cout<<tmp<<endl;
}
0