結果

問題 No.2089 置換の符号
ユーザー ニックネームニックネーム
提出日時 2022-09-30 21:53:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-12-22 23:21:57
合計ジャッジ時間 2,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n; self.k = [0]*(n+1)
    def a(self, i, x):
        while i <= self.n: self.k[i] += x; i += i&-i
    def s(self, i):
        t = 0
        while i > 0: t += self.k[i]; i -= i&-i
        return t
bit = BIT(int(input())); x = 0
for i, v in enumerate(map(int, input().split())): x += i-bit.s(v); bit.a(v, 1)
print(-1 if x%2 else 1)
0