結果

問題 No.2029 Swap Min Max Min
ユーザー EguyEguy
提出日時 2022-08-05 22:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 118,528 KB
最終ジャッジ日時 2024-09-15 20:08:37
合計ジャッジ時間 5,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 109 ms
100,608 KB
testcase_04 AC 77 ms
76,800 KB
testcase_05 AC 74 ms
80,768 KB
testcase_06 AC 94 ms
100,864 KB
testcase_07 AC 112 ms
102,912 KB
testcase_08 AC 125 ms
113,280 KB
testcase_09 AC 90 ms
85,120 KB
testcase_10 AC 64 ms
72,576 KB
testcase_11 AC 96 ms
90,880 KB
testcase_12 AC 77 ms
86,144 KB
testcase_13 AC 132 ms
112,896 KB
testcase_14 AC 116 ms
111,872 KB
testcase_15 AC 134 ms
117,760 KB
testcase_16 AC 116 ms
118,272 KB
testcase_17 AC 126 ms
112,896 KB
testcase_18 AC 128 ms
112,128 KB
testcase_19 AC 114 ms
117,888 KB
testcase_20 AC 112 ms
111,872 KB
testcase_21 AC 113 ms
112,128 KB
testcase_22 AC 115 ms
118,016 KB
testcase_23 AC 117 ms
112,512 KB
testcase_24 AC 117 ms
112,000 KB
testcase_25 AC 109 ms
112,256 KB
testcase_26 AC 110 ms
112,256 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 AC 42 ms
52,352 KB
testcase_29 AC 41 ms
52,480 KB
testcase_30 AC 41 ms
51,840 KB
testcase_31 AC 41 ms
52,480 KB
testcase_32 AC 43 ms
52,352 KB
testcase_33 AC 40 ms
51,968 KB
testcase_34 AC 41 ms
51,712 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 40 ms
51,840 KB
testcase_37 AC 40 ms
51,712 KB
testcase_38 AC 115 ms
113,792 KB
testcase_39 AC 111 ms
118,144 KB
testcase_40 AC 102 ms
110,976 KB
testcase_41 AC 115 ms
113,920 KB
testcase_42 AC 115 ms
114,304 KB
testcase_43 AC 109 ms
118,528 KB
testcase_44 AC 116 ms
112,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
#mod = 1000000007
mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))

N = int(input())
A = li()

idx = []
for i in range(N):
    if A[i] <= N // 2:
        idx.append(i)

lst = []
for i in range(N % 2, N, 2):
    lst.append(i)

Y = 0
for a, b in zip(idx, lst):
    Y += abs(a - b)

if N % 2:
    print(N // 2, Y)
    exit()

dp = [[INF] * 2 for _ in range(N//2)]
dp[0][0] = idx[0]
dp[0][1] = abs(idx[0] - 1)

for i in range(1, N//2):
    x = i * 2
    dp[i][0] = min(dp[i-1][0], dp[i-1][1]) + abs(idx[i] - x)
    dp[i][1] = dp[i-1][1] + abs(idx[i] - (x + 1))

print(N//2, min(dp[-1]))
0