結果

問題 No.2029 Swap Min Max Min
ユーザー tassei903tassei903
提出日時 2022-08-08 08:03:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 113,792 KB
最終ジャッジ日時 2024-09-18 19:16:58
合計ジャッジ時間 6,577 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 99 ms
96,896 KB
testcase_04 AC 64 ms
72,704 KB
testcase_05 AC 63 ms
78,592 KB
testcase_06 AC 84 ms
96,256 KB
testcase_07 AC 96 ms
100,608 KB
testcase_08 AC 113 ms
113,280 KB
testcase_09 AC 68 ms
77,184 KB
testcase_10 AC 58 ms
70,272 KB
testcase_11 AC 74 ms
83,456 KB
testcase_12 AC 69 ms
82,944 KB
testcase_13 AC 112 ms
107,776 KB
testcase_14 AC 105 ms
112,768 KB
testcase_15 AC 113 ms
112,480 KB
testcase_16 AC 99 ms
111,104 KB
testcase_17 AC 107 ms
107,776 KB
testcase_18 AC 110 ms
112,128 KB
testcase_19 AC 99 ms
111,104 KB
testcase_20 AC 106 ms
113,152 KB
testcase_21 AC 105 ms
112,896 KB
testcase_22 AC 102 ms
110,848 KB
testcase_23 AC 102 ms
112,512 KB
testcase_24 AC 102 ms
112,312 KB
testcase_25 AC 107 ms
111,616 KB
testcase_26 AC 96 ms
111,632 KB
testcase_27 AC 42 ms
51,584 KB
testcase_28 AC 43 ms
52,736 KB
testcase_29 AC 40 ms
52,096 KB
testcase_30 AC 41 ms
52,096 KB
testcase_31 AC 42 ms
52,224 KB
testcase_32 AC 41 ms
52,992 KB
testcase_33 AC 41 ms
51,968 KB
testcase_34 AC 43 ms
52,224 KB
testcase_35 AC 45 ms
51,840 KB
testcase_36 AC 40 ms
51,840 KB
testcase_37 AC 39 ms
51,584 KB
testcase_38 AC 99 ms
111,488 KB
testcase_39 AC 96 ms
110,564 KB
testcase_40 AC 92 ms
104,960 KB
testcase_41 AC 104 ms
113,792 KB
testcase_42 AC 107 ms
113,508 KB
testcase_43 AC 95 ms
109,568 KB
testcase_44 AC 101 ms
112,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
a = na()
b = []
def f(p,q):
    r = 0
    for i in range(len(p)):
        r += abs(p[i]-q[i])
    return r

for i in range(n):
    if a[i] <= n//2:
        b.append(i)
if n % 2:
    c = list(range(1,n,2))
    print(n//2,f(b,c))
else:
    p = [0]
    for i in range(n//2):
        p.append(p[-1] + abs(b[i] - i * 2 - 1))
    ans = p[-1]
    x = 0
    for i in range(n//2-1,-1,-1):
        x += abs(b[i]-2*i)
        #print(b[i],2*i,p[i],x)
        ans = min(ans, p[i] + x)
    print(n//2,ans)
0