結果

問題 No.2089 置換の符号
ユーザー AkariAkari
提出日時 2022-09-30 22:05:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,592 KB
最終ジャッジ日時 2024-06-02 05:43:18
合計ジャッジ時間 17,395 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
44,592 KB
testcase_01 AC 466 ms
44,088 KB
testcase_02 AC 463 ms
44,216 KB
testcase_03 AC 458 ms
44,468 KB
testcase_04 AC 468 ms
44,084 KB
testcase_05 AC 454 ms
43,952 KB
testcase_06 AC 454 ms
44,212 KB
testcase_07 AC 455 ms
44,328 KB
testcase_08 AC 465 ms
44,220 KB
testcase_09 AC 451 ms
44,088 KB
testcase_10 AC 448 ms
43,960 KB
testcase_11 AC 451 ms
44,204 KB
testcase_12 AC 448 ms
43,960 KB
testcase_13 AC 453 ms
43,948 KB
testcase_14 AC 446 ms
44,348 KB
testcase_15 AC 458 ms
44,464 KB
testcase_16 AC 455 ms
44,088 KB
testcase_17 AC 456 ms
43,952 KB
testcase_18 AC 447 ms
43,960 KB
testcase_19 AC 461 ms
44,340 KB
testcase_20 AC 455 ms
43,956 KB
testcase_21 AC 456 ms
44,080 KB
testcase_22 AC 456 ms
43,952 KB
testcase_23 AC 458 ms
44,340 KB
testcase_24 AC 458 ms
43,952 KB
testcase_25 AC 457 ms
44,128 KB
testcase_26 AC 463 ms
44,468 KB
testcase_27 AC 479 ms
43,956 KB
testcase_28 AC 547 ms
44,216 KB
testcase_29 AC 557 ms
44,080 KB
testcase_30 AC 555 ms
43,952 KB
testcase_31 AC 561 ms
44,216 KB
testcase_32 AC 555 ms
44,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

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

def fwsum(data, l, r):
    s = 0
    while r > 0:
        s += data[r-1]
        r -= r & -r
    while l > 0:
        s -= data[l-1]
        l -= l & -l
    return s



def main():
    n = int(input())
    S = np.fromstring(input(), np.int64, sep=' ') - 1
    fw = np.zeros(n, np.int64)
    a = 0
    for s in S:
        a += fwsum(fw, s, n)
        fwadd(fw, s, 1)
    print(-1 if a & 1 else 1)







if __name__ == '__main__':
    main()
0