結果

問題 No.366 ロボットソート
ユーザー ntudantuda
提出日時 2024-08-31 16:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 74,272 KB
最終ジャッジ日時 2024-08-31 16:23:37
合計ジャッジ時間 3,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
67,768 KB
testcase_01 AC 64 ms
68,060 KB
testcase_02 AC 58 ms
68,132 KB
testcase_03 AC 60 ms
67,572 KB
testcase_04 AC 61 ms
68,796 KB
testcase_05 AC 61 ms
68,380 KB
testcase_06 AC 59 ms
68,300 KB
testcase_07 AC 61 ms
68,032 KB
testcase_08 AC 62 ms
69,024 KB
testcase_09 AC 61 ms
68,864 KB
testcase_10 AC 62 ms
68,828 KB
testcase_11 AC 63 ms
70,600 KB
testcase_12 AC 64 ms
70,144 KB
testcase_13 AC 69 ms
72,328 KB
testcase_14 AC 68 ms
73,352 KB
testcase_15 AC 67 ms
71,684 KB
testcase_16 AC 67 ms
72,016 KB
testcase_17 AC 70 ms
71,220 KB
testcase_18 AC 73 ms
74,008 KB
testcase_19 AC 71 ms
71,872 KB
testcase_20 AC 64 ms
70,872 KB
testcase_21 AC 74 ms
74,272 KB
testcase_22 AC 69 ms
73,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
import typing


class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r

        return s

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

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