結果

問題 No.2029 Swap Min Max Min
ユーザー ntudantuda
提出日時 2022-08-10 20:19:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 110,312 KB
最終ジャッジ日時 2024-09-21 06:40:29
合計ジャッジ時間 6,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,216 KB
testcase_01 AC 37 ms
52,820 KB
testcase_02 AC 42 ms
52,256 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 58 ms
74,960 KB
testcase_06 AC 73 ms
90,820 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 52 ms
68,804 KB
testcase_11 WA -
testcase_12 AC 63 ms
79,324 KB
testcase_13 WA -
testcase_14 AC 88 ms
103,460 KB
testcase_15 WA -
testcase_16 AC 87 ms
102,692 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 90 ms
103,968 KB
testcase_20 AC 88 ms
103,680 KB
testcase_21 AC 90 ms
103,144 KB
testcase_22 AC 87 ms
103,612 KB
testcase_23 WA -
testcase_24 AC 100 ms
110,040 KB
testcase_25 AC 83 ms
104,236 KB
testcase_26 AC 82 ms
104,172 KB
testcase_27 RE -
testcase_28 AC 39 ms
53,268 KB
testcase_29 AC 39 ms
52,988 KB
testcase_30 AC 39 ms
52,400 KB
testcase_31 AC 38 ms
54,236 KB
testcase_32 AC 39 ms
53,108 KB
testcase_33 AC 38 ms
52,920 KB
testcase_34 WA -
testcase_35 AC 38 ms
53,084 KB
testcase_36 AC 38 ms
52,696 KB
testcase_37 AC 37 ms
52,820 KB
testcase_38 WA -
testcase_39 AC 85 ms
103,600 KB
testcase_40 AC 79 ms
97,724 KB
testcase_41 AC 96 ms
107,200 KB
testcase_42 AC 96 ms
107,380 KB
testcase_43 AC 83 ms
103,128 KB
testcase_44 AC 99 ms
110,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
X = N // 2
if N & 1:
    st = 1
    Y = 0
    for i,a in enumerate(A):
        if a <= X:
            Y += abs(st-i)
            st += 2
else:
    dp = [[0]*2 for _ in range(N//2)]
    j = 0
    for i,a in enumerate(A):
        if a <= X:
            dp[j][0] = dp[j-1][0] + abs(j*2-i)
            dp[j][1] = min(dp[j-1][0],dp[j-1][1]) + abs(j*2+1-i)
            j += 1
    Y = min(dp[-1][0],dp[-2][1])
print(X,Y)
0