結果

問題 No.2382 Amidakuji M
ユーザー achapiachapi
提出日時 2023-07-14 21:43:22
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 3,968 ms
コンパイル使用メモリ 262,348 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 06:37:27
合計ジャッジ時間 5,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	long long N, M;
	cin >> N >> M;
	vector<int> P(N);
	for (int i = 0; i < N; i++){
		cin >> P[i];
		P[i]--;
	}
	atcoder::fenwick_tree<int> fw(N);
	long long c = 0;
	for (int i = 0; i < N; i++){
		c += fw.sum(P[i], N);
		fw.add(P[i], 1);
	}
	long long ans = 0;
	if (c % M == 0){
		ans = c;
	} else if (c < M){
		if ((M - c) % 2 == 0){
			ans = M;
		} else {
			if (M % 2 == 1){
				ans = M * 2;
			} else {
				ans = -1;
			}
		}
	} else {
		M = (c + M - 1) / M * M;
		if ((M - c) % 2 == 0){
			ans = M;
		} else {
			if (M % 2 == 1){
				ans = M * 2;
			} else {
				ans = -1;
			}
		}
	}
	cout << ans << '\n';
}
0