結果

問題 No.2029 Swap Min Max Min
ユーザー ShirotsumeShirotsume
提出日時 2022-08-05 22:20:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 113,536 KB
最終ジャッジ日時 2024-09-15 20:05:08
合計ジャッジ時間 6,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 75 ms
81,664 KB
testcase_06 AC 95 ms
101,632 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 65 ms
72,576 KB
testcase_11 WA -
testcase_12 AC 80 ms
86,656 KB
testcase_13 WA -
testcase_14 AC 115 ms
112,000 KB
testcase_15 WA -
testcase_16 AC 114 ms
112,000 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 113 ms
112,512 KB
testcase_20 AC 116 ms
111,616 KB
testcase_21 AC 115 ms
112,128 KB
testcase_22 AC 114 ms
112,000 KB
testcase_23 AC 113 ms
112,384 KB
testcase_24 AC 114 ms
106,240 KB
testcase_25 AC 110 ms
111,744 KB
testcase_26 AC 109 ms
106,112 KB
testcase_27 AC 40 ms
51,840 KB
testcase_28 AC 42 ms
52,352 KB
testcase_29 AC 40 ms
51,968 KB
testcase_30 AC 40 ms
51,840 KB
testcase_31 AC 41 ms
52,224 KB
testcase_32 AC 42 ms
52,480 KB
testcase_33 AC 40 ms
51,584 KB
testcase_34 WA -
testcase_35 AC 40 ms
51,328 KB
testcase_36 AC 39 ms
51,712 KB
testcase_37 AC 40 ms
51,712 KB
testcase_38 AC 111 ms
112,384 KB
testcase_39 AC 108 ms
111,872 KB
testcase_40 AC 103 ms
111,360 KB
testcase_41 AC 111 ms
113,536 KB
testcase_42 AC 111 ms
112,768 KB
testcase_43 AC 108 ms
111,744 KB
testcase_44 AC 115 ms
111,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

a = li()

x = n // 2

for i in range(n):
    if a[i] <= x:
        a[i] = 0
    else:
        a[i] = 1

zero = []
even = []

for i in range(n):
    if a[i] == 0:
        zero.append(i) 
for i in range(1, n, 2):
    even.append(i)
ans = 0
for i in range(n // 2):
    ans += abs(zero[i] - even[i])
if n % 2 == 0:
    now = ans
    for i in range(n // 2):
        now -= abs(zero[i] - even[i])
        even[i] -= 1
        now += abs(zero[i] - even[i])
        ans = min(ans, now)
print(x, ans)
        
0