結果

問題 No.366 ロボットソート
ユーザー ntudantuda
提出日時 2024-08-31 16:20:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 673 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 69,736 KB
最終ジャッジ日時 2024-08-31 16:20:52
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 40 ms
54,528 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 42 ms
54,440 KB
testcase_06 AC 41 ms
53,744 KB
testcase_07 RE -
testcase_08 AC 42 ms
54,144 KB
testcase_09 RE -
testcase_10 AC 42 ms
53,756 KB
testcase_11 AC 44 ms
56,668 KB
testcase_12 AC 44 ms
55,640 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 44 ms
56,204 KB
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
N, K = map(int, input().split())
A = list(map(int, input().split()))
B = sorted(list(set(A)))
D = dict(zip(B,range(len(B))))

for i in range(N):
    A[i] = D[A[i]]

B = [[] for _ in range(K)]
for i in range(N):
    B[i % K].append(A[i])
C = deepcopy(B)

for b in B:
    b.sort()
now = 0
for i in range(N):
    b = B[i%K][i//K]
    if now > b:
        print(-1)
        exit()
    now = b

from atcoder.fenwicktree import FenwickTree
ans = 0
for cs in C:
    if cs:
        NC = max(cs)
        ft = FenwickTree(NC + 1)
        cnt = 0
        for c in cs:
            cnt += ft.sum(c, NC + 1)
            ft.add(c, 1)
        ans += cnt
print(ans)
0