結果

問題 No.482 あなたの名は
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-02-10 23:20:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,036 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 97,692 KB
最終ジャッジ日時 2024-06-09 04:32:32
合計ジャッジ時間 4,775 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,932 KB
testcase_01 AC 32 ms
52,340 KB
testcase_02 AC 33 ms
53,492 KB
testcase_03 WA -
testcase_04 AC 32 ms
52,596 KB
testcase_05 WA -
testcase_06 AC 32 ms
53,836 KB
testcase_07 WA -
testcase_08 AC 40 ms
62,136 KB
testcase_09 AC 36 ms
54,156 KB
testcase_10 AC 40 ms
64,180 KB
testcase_11 AC 42 ms
62,836 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 44 ms
61,732 KB
testcase_15 AC 208 ms
97,216 KB
testcase_16 AC 208 ms
97,576 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 201 ms
97,076 KB
testcase_20 WA -
testcase_21 AC 205 ms
97,004 KB
testcase_22 AC 206 ms
97,028 KB
testcase_23 AC 202 ms
96,960 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 206 ms
97,340 KB
testcase_28 AC 200 ms
97,064 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import sys


REC_LIMIT = 10000


# http://www.prefield.com/algorithm/sort/mergecount.html
def inversion_number(xs):
    n = len(xs)
    cnt = 0
    if n > 1:
        bs = xs[:n // 2]
        cs = xs[n // 2:]
        cnt += inversion_number(bs)
        cnt += inversion_number(cs)
        j = 0
        k = 0
        for i in range(n):
            if k == len(cs):
                xs[i] = bs[j]
                j += 1
            elif j == len(bs):
                xs[i] = cs[k]
                k += 1
            elif bs[j] <= cs[k]:
                xs[i] = bs[j]
                j += 1
            else:
                xs[i] = cs[k]
                k += 1
                cnt += n // 2 - j
    return cnt


def judge(n, k, ds):
    inv_n = inversion_number(ds)
    return inv_n % k == 0


def main():
    sys.setrecursionlimit(REC_LIMIT)
    n, k = (int(x) for x in input().split())
    ds = [int(x) for x in input().split()]
    print("YES" if judge(n, k, ds) else "NO")


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