結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-12 22:27:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 165,932 KB
最終ジャッジ日時 2024-10-14 12:58:08
合計ジャッジ時間 9,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 WA -
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 WA -
testcase_15 AC 40 ms
52,096 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 40 ms
51,968 KB
testcase_22 AC 222 ms
127,012 KB
testcase_23 AC 98 ms
90,240 KB
testcase_24 AC 87 ms
87,940 KB
testcase_25 AC 229 ms
132,156 KB
testcase_26 AC 283 ms
163,428 KB
testcase_27 AC 250 ms
132,796 KB
testcase_28 AC 301 ms
163,888 KB
testcase_29 AC 132 ms
101,724 KB
testcase_30 AC 111 ms
92,648 KB
testcase_31 AC 300 ms
163,592 KB
testcase_32 AC 118 ms
99,020 KB
testcase_33 AC 59 ms
71,296 KB
testcase_34 AC 135 ms
103,040 KB
testcase_35 AC 265 ms
136,940 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
import bisect

N = int(stdin.readline())
A = list(map(int,stdin.readline().split()))

nums = []
inds = {}
for i in range(N):
    if A[i] not in inds:
        nums.append(A[i])
        inds[A[i]] = []
    inds[A[i]].append(i)

nums.sort()
ind = 0
ans = 0

for v in nums:

    inds[v].sort()
    nex = ( bisect.bisect_left(inds[v],ind) ) % len(inds[v])

    for j in range(len(inds[v])):

        nexind = inds[v][(nex+j) % len(inds[v])]
        if nexind < ind:
            ans += 1
        ind = nexind

print (ans)
0