結果

問題 No.2382 Amidakuji M
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-07-14 21:36:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-16 06:28:15
合計ジャッジ時間 3,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 103 ms
87,936 KB
testcase_04 AC 142 ms
100,224 KB
testcase_05 AC 75 ms
76,928 KB
testcase_06 AC 110 ms
89,984 KB
testcase_07 AC 91 ms
83,968 KB
testcase_08 AC 61 ms
68,480 KB
testcase_09 AC 125 ms
95,104 KB
testcase_10 AC 155 ms
104,064 KB
testcase_11 AC 96 ms
84,864 KB
testcase_12 AC 126 ms
96,768 KB
testcase_13 AC 41 ms
51,584 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 40 ms
51,840 KB
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 172 ms
107,520 KB
testcase_20 AC 172 ms
107,392 KB
testcase_21 AC 167 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bitadd(a,w,bit): #aにwを加える(1-origin)
 
    x = a
    while x <= (len(bit)-1):
        bit[x] += w
        x += x & (-1 * x)
 
def bitsum(a,bit): #ind 1~aまでの和を求める
 
    ret = 0
    x = a
    while x > 0:
        ret += bit[x]
        x -= x & (-1 * x)
    return ret


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

BIT = [0] * (N+1)
a = list(map(int,input().split()))

ans = 0
for i in range(N):

    ans += i - bitsum(a[i],BIT)
    bitadd(a[i],1,BIT)

if ans % M == 0:
    print (ans)
elif M % 2 == 0 and ans % 2 == 1:
    print (-1)
else:
    
    now = ans // M * M
    while (True):

        if now >= ans and (now-ans) % 2 == 0:
            print (now)
            break

        now += M
    
0