結果

問題 No.2029 Swap Min Max Min
ユーザー 👑 KazunKazun
提出日時 2022-08-05 23:14:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 113,920 KB
最終ジャッジ日時 2024-09-15 20:48:39
合計ジャッジ時間 5,549 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 91 ms
93,056 KB
testcase_04 AC 71 ms
73,984 KB
testcase_05 AC 66 ms
78,080 KB
testcase_06 AC 84 ms
96,184 KB
testcase_07 AC 100 ms
98,304 KB
testcase_08 AC 119 ms
108,928 KB
testcase_09 AC 77 ms
78,848 KB
testcase_10 AC 61 ms
69,632 KB
testcase_11 AC 85 ms
83,456 KB
testcase_12 AC 75 ms
82,560 KB
testcase_13 AC 122 ms
108,800 KB
testcase_14 AC 106 ms
112,640 KB
testcase_15 AC 123 ms
113,152 KB
testcase_16 AC 105 ms
111,360 KB
testcase_17 AC 121 ms
108,800 KB
testcase_18 AC 123 ms
113,536 KB
testcase_19 AC 106 ms
112,512 KB
testcase_20 AC 110 ms
113,536 KB
testcase_21 AC 110 ms
113,152 KB
testcase_22 AC 105 ms
112,256 KB
testcase_23 AC 112 ms
113,920 KB
testcase_24 AC 110 ms
113,664 KB
testcase_25 AC 102 ms
111,616 KB
testcase_26 AC 104 ms
112,000 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 AC 42 ms
51,968 KB
testcase_29 AC 41 ms
51,840 KB
testcase_30 AC 41 ms
51,456 KB
testcase_31 AC 42 ms
51,840 KB
testcase_32 AC 42 ms
52,224 KB
testcase_33 AC 41 ms
51,584 KB
testcase_34 AC 41 ms
51,712 KB
testcase_35 AC 41 ms
51,968 KB
testcase_36 AC 42 ms
52,224 KB
testcase_37 AC 40 ms
51,456 KB
testcase_38 AC 101 ms
107,136 KB
testcase_39 AC 102 ms
110,976 KB
testcase_40 AC 96 ms
104,960 KB
testcase_41 AC 107 ms
109,568 KB
testcase_42 AC 108 ms
109,568 KB
testcase_43 AC 100 ms
110,592 KB
testcase_44 AC 112 ms
113,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    A=[-1]+list(map(int,input().split()))

    X=N//2; Y=0

    T=[i for i in range(1,N+1) if A[i]<=X]

    if N%2==1:
        for i,t in enumerate(T,1):
            Y+=abs(2*i-t)
    else:
        y=z=0
        for i,a in enumerate(T,1):
            y+=abs(2*i-1-a)
            z+=abs(2*i-a)
        Y=min(y,z)

        for i,a in enumerate(T,1):
            y+=abs(2*i-a)-abs(2*i-1-a)
            Y=min(Y,y)

        for j in range(N//2-1,-1,-1):
            k=j+1; a=T[j]
            z+=abs(2*k-1-a)-abs(2*k-a)
            Y=min(Y,z)

    print(X,Y)

solve()
0