結果

問題 No.2382 Amidakuji M
ユーザー sharusharu
提出日時 2023-07-15 00:08:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,131 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,632 KB
最終ジャッジ日時 2024-09-16 09:09:10
合計ジャッジ時間 10,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 490 ms
18,748 KB
testcase_04 AC 829 ms
25,608 KB
testcase_05 AC 139 ms
13,056 KB
testcase_06 AC 569 ms
20,056 KB
testcase_07 AC 319 ms
16,284 KB
testcase_08 AC 46 ms
11,264 KB
testcase_09 AC 862 ms
23,672 KB
testcase_10 AC 1,131 ms
28,968 KB
testcase_11 AC 357 ms
16,992 KB
testcase_12 AC 870 ms
23,784 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 28 ms
10,496 KB
testcase_19 AC 1,111 ms
29,632 KB
testcase_20 AC 1,115 ms
29,600 KB
testcase_21 AC 1,123 ms
29,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class fenwick_tree:
    def __init__(self, N):
        self.n = N
        self.data = [0] * N

    def add(self, p, x):
        assert 0 <= p < self.n
        p += 1
        while p <= self.n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        """return sum(a[l:r-1])"""
        assert 0 <= l and l <= r and r <= self.n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s


n, m = map(int, input().split())
p = list(map(int, input().split()))
ft = fenwick_tree(n)
l = 0
for i in range(n):
    l += ft.sum(p[i], n)
    ft.add(p[i] - 1, 1)

if l % 2 == 1 and m % 2 == 0:
    print(-1)
else:
    ans = 0 - -l // m * m
    if ans % 2 != l % 2:
        ans += m
    print(ans)
0