結果

問題 No.2382 Amidakuji M
ユーザー titiatitia
提出日時 2023-07-14 22:10:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,024 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,820 KB
最終ジャッジ日時 2024-09-16 07:13:54
合計ジャッジ時間 9,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 422 ms
18,936 KB
testcase_04 AC 751 ms
25,668 KB
testcase_05 AC 124 ms
13,056 KB
testcase_06 AC 446 ms
20,236 KB
testcase_07 AC 278 ms
16,604 KB
testcase_08 AC 47 ms
11,264 KB
testcase_09 AC 642 ms
23,756 KB
testcase_10 AC 918 ms
29,160 KB
testcase_11 AC 335 ms
17,180 KB
testcase_12 AC 646 ms
23,848 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 1,019 ms
29,568 KB
testcase_20 AC 1,024 ms
29,564 KB
testcase_21 AC 1,001 ms
29,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N,M=map(int,input().split())
A=list(map(int,input().split()))

LEN=len(A)
MAX=max(A)
MIN=min(A)

BIT=[0]*(MAX-MIN+2) # 出現回数をbit indexed treeの形でもっておく.

def update(v,w): # index vにwを加える
    while v<=MAX-MIN+1:
        BIT[v]+=w
        v+=(v&(-v)) # 自分を含む大きなノードへ. たとえばv=3→v=4

def getvalue(v): # MIN~vの区間の和を求める
    ANS=0
    while v!=0:
        ANS+=BIT[v]
        v-=(v&(-v)) # たとえばv=3→v=2へ
    return ANS

ANS=0        
for i in range(LEN): # A[0],A[1],...とBITを更新しながら,各A[i]について転倒数を求める.
    bit_ai=A[i]-MIN+1 # A[i]がBITの中で何番目か

    ANS+=i # 今まで出現した個数.
    ANS-=getvalue(bit_ai) # 今まで出現した中で,MIN~bit_aiの個数を減らす.
    # bit_ai~MAXの出現個数が転倒数

    update(bit_ai,1)

if ANS==0:
    print(0)

elif ANS%2==0 and M%2==0:
    if ANS<=M:
        print(M)
    else:
        x=(ANS+M-1)//M
        print(x*M)
        
elif ANS%2==1 and M%2==0:
    print(-1)

elif ANS%2==0 and M%2==1:
    M*=2

    if ANS<=M:
        print(M)
    else:
        x=(ANS+M-1)//M
        print(x*M)
        
elif ANS%2==1 and M%2==1:
    if ANS<=M:
        print(M)
    else:
        x=(ANS+M-1)//M
        now=x*M

        while now%2!=ANS%2:
            now+=M

        print(now)
        
    
0