結果

問題 No.1838 Modulo Straight
ユーザー tamatotamato
提出日時 2022-02-11 23:13:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 694 ms / 2,000 ms
コード長 1,758 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 152,256 KB
最終ジャッジ日時 2024-06-27 21:34:38
合計ジャッジ時間 19,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 73 ms
76,672 KB
testcase_04 AC 72 ms
76,800 KB
testcase_05 AC 69 ms
77,056 KB
testcase_06 AC 65 ms
76,800 KB
testcase_07 AC 65 ms
76,432 KB
testcase_08 AC 72 ms
76,424 KB
testcase_09 AC 64 ms
76,416 KB
testcase_10 AC 65 ms
76,160 KB
testcase_11 AC 694 ms
151,744 KB
testcase_12 AC 674 ms
151,480 KB
testcase_13 AC 693 ms
152,256 KB
testcase_14 AC 690 ms
151,796 KB
testcase_15 AC 691 ms
152,256 KB
testcase_16 AC 653 ms
146,996 KB
testcase_17 AC 662 ms
146,956 KB
testcase_18 AC 656 ms
147,180 KB
testcase_19 AC 636 ms
145,064 KB
testcase_20 AC 631 ms
145,260 KB
testcase_21 AC 653 ms
145,244 KB
testcase_22 AC 444 ms
137,100 KB
testcase_23 AC 438 ms
141,256 KB
testcase_24 AC 425 ms
133,124 KB
testcase_25 AC 460 ms
132,752 KB
testcase_26 AC 462 ms
131,956 KB
testcase_27 AC 486 ms
135,192 KB
testcase_28 AC 503 ms
137,680 KB
testcase_29 AC 508 ms
137,892 KB
testcase_30 AC 545 ms
137,720 KB
testcase_31 AC 569 ms
140,344 KB
testcase_32 AC 601 ms
139,968 KB
testcase_33 AC 626 ms
147,116 KB
testcase_34 AC 613 ms
146,740 KB
testcase_35 AC 614 ms
142,620 KB
testcase_36 AC 572 ms
141,296 KB
testcase_37 AC 522 ms
137,544 KB
testcase_38 AC 486 ms
137,220 KB
testcase_39 AC 179 ms
98,688 KB
testcase_40 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    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 lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    M, K = map(int, input().split())
    N = M * K
    A = list(map(int, input().split()))

    idx = [[-1] * M for _ in range(K)]
    LV = [0] * M
    for i, a in enumerate(A):
        idx[LV[a]][a] = i + 1
        LV[a] += 1

    bit_cur = Bit(N)
    bit_all = Bit(N)
    base = 0
    score_sum = [0] * M
    for lv in range(K):
        I = idx[lv]
        score = [0] * M
        for a in range(M):
            i = I[a]
            base += M * lv - bit_all.sum(i)
            score[0] += a - bit_cur.sum(i)
            bit_cur.add(i, 1)
        for a in range(1, M):
            i = I[a - 1]
            x = bit_cur.sum(i) - 1
            score[a] = score[a - 1] - x + (M - (x + 1))

        # delete
        for a in range(M):
            i = I[a]
            bit_cur.add(i, -1)
            bit_all.add(i, 1)
            score_sum[a] += score[a]
    print(base + min(score_sum))


if __name__ == '__main__':
    main()
0