結果

問題 No.2382 Amidakuji M
ユーザー strangerxxxstrangerxxx
提出日時 2023-07-14 21:56:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,169 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 165,460 KB
最終ジャッジ日時 2024-09-16 06:55:23
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,696 KB
testcase_02 WA -
testcase_03 AC 155 ms
119,708 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 164 ms
125,528 KB
testcase_07 AC 122 ms
105,772 KB
testcase_08 AC 55 ms
72,324 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 202 ms
133,800 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 37 ms
52,524 KB
testcase_16 AC 39 ms
53,664 KB
testcase_17 AC 39 ms
53,664 KB
testcase_18 WA -
testcase_19 AC 298 ms
165,460 KB
testcase_20 AC 305 ms
155,352 KB
testcase_21 AC 296 ms
155,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def resolve():
    import sys

    input = sys.stdin.readline
    n, m = map(int, input().split())
    p = tuple(map(int, input().split()))
    i = inversion_num_compress(p)
    if (m - i) % 2 == 1:
        print(-1)
        return
    import math

    print(i + math.lcm(abs(m - i), 2))


def inversion_num_compress(l):
    s = set(l)
    d = {x: i for i, x in enumerate(sorted(s))}
    r = [d[x] + 1 for x in l]
    bit = BIT(len(s) + 1)
    res = 0
    for i, p in enumerate(r):
        bit.add(p, 1)
        res += i + 1 - bit.sum(p)
    return res


class BIT:
    # Binary Indexed Tree (Fenwick Tree)
    def __init__(self, n):
        self.n = n
        self.data = [0] * (n + 1)
        self.el = [0] * (n + 1)

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

    def add(self, i, x):
        # assert i > 0
        self.el[i] += x
        while i <= self.n:
            self.data[i] += x
            i += i & -i

    def get(self, i, j=None):
        if j is None:
            return self.el[i]
        return self.sum(j) - self.sum(i)


if __name__ == "__main__":
    resolve()
0