結果

問題 No.366 ロボットソート
ユーザー tonnnura172tonnnura172
提出日時 2020-04-27 15:16:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,403 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 821,120 KB
最終ジャッジ日時 2024-05-01 13:41:14
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,136 KB
testcase_01 AC 34 ms
11,264 KB
testcase_02 AC 34 ms
11,136 KB
testcase_03 AC 33 ms
11,136 KB
testcase_04 AC 35 ms
11,136 KB
testcase_05 AC 33 ms
11,136 KB
testcase_06 AC 31 ms
11,264 KB
testcase_07 AC 33 ms
11,264 KB
testcase_08 AC 33 ms
11,264 KB
testcase_09 AC 33 ms
11,136 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 MLE -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul, add
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce, lru_cache
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

def culc_inv(l):
	bit = Bit(max(l)+1)
	cnt = 0
	for i, x in enumerate(l):
		cnt += i-bit.sum(x)
		bit.add(x, 1)
	return cnt

N, K = MAP()
a = LIST()

ans = 0
tmp = []
for i in range(min(K, N)):
	l = a[i::K]
	if any(x>y for x, y in zip(tmp, sorted(l))):
		print(-1)
		exit()
	ans += culc_inv(l)
	tmp = sorted(l)
print(ans)
0