結果

問題 No.1604 Swap Sort:ONE
ユーザー tcltktcltk
提出日時 2021-10-19 06:44:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-09-20 05:41:48
合計ジャッジ時間 5,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
86,776 KB
testcase_01 AC 114 ms
86,656 KB
testcase_02 AC 114 ms
86,656 KB
testcase_03 AC 116 ms
86,676 KB
testcase_04 AC 115 ms
86,784 KB
testcase_05 AC 118 ms
87,548 KB
testcase_06 AC 147 ms
89,480 KB
testcase_07 AC 142 ms
89,472 KB
testcase_08 AC 136 ms
89,856 KB
testcase_09 AC 133 ms
89,652 KB
testcase_10 AC 136 ms
89,224 KB
testcase_11 AC 139 ms
89,240 KB
testcase_12 AC 139 ms
89,728 KB
testcase_13 AC 135 ms
89,856 KB
testcase_14 AC 139 ms
89,312 KB
testcase_15 AC 137 ms
89,176 KB
testcase_16 AC 136 ms
89,780 KB
testcase_17 AC 129 ms
89,472 KB
testcase_18 AC 129 ms
89,676 KB
testcase_19 AC 133 ms
89,472 KB
testcase_20 AC 127 ms
89,356 KB
testcase_21 AC 134 ms
89,228 KB
testcase_22 AC 133 ms
89,144 KB
testcase_23 AC 124 ms
89,088 KB
testcase_24 AC 125 ms
88,776 KB
testcase_25 AC 138 ms
89,728 KB
testcase_26 AC 135 ms
89,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3
# 3 2 1

# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

N = int(input())
A = list(map(lambda x: int(x)-1, input().split()))

Pos = [-1] * N
for i in range(N):
    Pos[A[i]] = i

n = 0
for i in range(N):
    while A[i] > i:
        for k in reversed(range(i, A[i])):
            A[Pos[k]] = k+1
            Pos[k+1] = Pos[k]
            n += 1
        A[i] = i
        Pos[i] = i

print(n)            
0