結果

問題 No.2382 Amidakuji M
ユーザー ntudantuda
提出日時 2023-07-16 20:02:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 108,188 KB
最終ジャッジ日時 2024-09-17 15:09:42
合計ジャッジ時間 2,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,728 KB
testcase_01 AC 31 ms
53,564 KB
testcase_02 AC 33 ms
53,400 KB
testcase_03 AC 75 ms
88,292 KB
testcase_04 AC 102 ms
100,352 KB
testcase_05 AC 52 ms
77,528 KB
testcase_06 AC 77 ms
90,196 KB
testcase_07 AC 67 ms
83,652 KB
testcase_08 AC 47 ms
68,068 KB
testcase_09 AC 91 ms
94,612 KB
testcase_10 AC 119 ms
104,004 KB
testcase_11 AC 69 ms
85,060 KB
testcase_12 AC 94 ms
97,028 KB
testcase_13 AC 32 ms
52,976 KB
testcase_14 AC 30 ms
52,600 KB
testcase_15 AC 30 ms
53,152 KB
testcase_16 AC 29 ms
52,320 KB
testcase_17 AC 30 ms
52,316 KB
testcase_18 AC 30 ms
52,940 KB
testcase_19 AC 125 ms
107,864 KB
testcase_20 AC 131 ms
108,188 KB
testcase_21 AC 133 ms
107,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

N, M = map(int, input().split())
P = list(map(int, input().split()))
bit = Bit(N + 1)
cnt = 0
for i, p in enumerate(P):
    bit.add(p, 1)
    cnt += (i + 1) - bit.sum(p)
tmp = - (- cnt // M)
if cnt % 2 == 1 and M % 2 == 0:
    print(-1)
elif (tmp * M - cnt) % 2 == 0:
    print(tmp * M)
else:
    print((tmp + 1) * M)
0