結果
問題 | No.366 ロボットソート |
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
from copy import deepcopyimport typingclass FenwickTree:'''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''def __init__(self, n: int = 0) -> None:self._n = nself.data = [0] * ndef add(self, p: int, x: typing.Any) -> None:assert 0 <= p < self._np += 1while p <= self._n:self.data[p - 1] += xp += p & -pdef sum(self, left: int, right: int) -> typing.Any:assert 0 <= left <= right <= self._nreturn self._sum(right) - self._sum(left)def _sum(self, r: int) -> typing.Any:s = 0while r > 0:s += self.data[r - 1]r -= r & -rreturn sN, 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 = 0for i in range(N):b = B[i % K][i // K]if now > b:print(-1)exit()now = bans = 0for cs in C:if cs:NC = max(cs)ft = FenwickTree(NC + 1)cnt = 0for c in cs:cnt += ft.sum(c, NC + 1)ft.add(c, 1)ans += cntprint(ans)