結果

問題 No.2029 Swap Min Max Min
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-05 23:19:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 114,328 KB
最終ジャッジ日時 2024-09-15 20:54:25
合計ジャッジ時間 5,705 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 103 ms
99,660 KB
testcase_04 AC 78 ms
81,792 KB
testcase_05 AC 63 ms
78,208 KB
testcase_06 AC 80 ms
96,128 KB
testcase_07 AC 108 ms
101,348 KB
testcase_08 AC 136 ms
109,696 KB
testcase_09 AC 84 ms
86,784 KB
testcase_10 AC 55 ms
70,272 KB
testcase_11 AC 93 ms
92,352 KB
testcase_12 AC 67 ms
82,816 KB
testcase_13 AC 139 ms
109,824 KB
testcase_14 AC 100 ms
112,092 KB
testcase_15 AC 143 ms
113,536 KB
testcase_16 AC 94 ms
111,220 KB
testcase_17 AC 137 ms
109,948 KB
testcase_18 AC 146 ms
112,172 KB
testcase_19 AC 95 ms
111,076 KB
testcase_20 AC 99 ms
112,100 KB
testcase_21 AC 99 ms
112,648 KB
testcase_22 AC 94 ms
110,720 KB
testcase_23 AC 136 ms
114,048 KB
testcase_24 AC 135 ms
113,920 KB
testcase_25 AC 90 ms
111,344 KB
testcase_26 AC 91 ms
110,976 KB
testcase_27 AC 39 ms
52,608 KB
testcase_28 AC 38 ms
52,608 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 39 ms
51,968 KB
testcase_31 AC 39 ms
52,736 KB
testcase_32 AC 47 ms
61,076 KB
testcase_33 AC 37 ms
51,840 KB
testcase_34 AC 36 ms
51,840 KB
testcase_35 AC 38 ms
52,096 KB
testcase_36 AC 38 ms
51,840 KB
testcase_37 AC 38 ms
52,224 KB
testcase_38 AC 124 ms
110,976 KB
testcase_39 AC 88 ms
109,952 KB
testcase_40 AC 84 ms
104,384 KB
testcase_41 AC 129 ms
110,528 KB
testcase_42 AC 128 ms
110,760 KB
testcase_43 AC 91 ms
109,312 KB
testcase_44 AC 136 ms
114,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))

ans = n//2
l = []
for i,a in enumerate(A):
    if a <= ans:
        l.append(i)


score = 0
for i in range(len(l)):
    t = 2*i+n%2
    score += abs(t-l[i])

if n%2:
    print(ans,score)
    exit()

inf = 10**10
dp = [[inf]*2 for i in range(n)]
dp[1][0] = abs(1-l[0])

for i in range(1,n):
    for j in range(2):
        if dp[i][j] == inf:
            continue
        nid = (i+1)//2+j

        if nid >= ans:
            continue
        s = dp[i][j]
        if j == 0:
            if i+2 < n:
                dp[i+2][0] = min(dp[i+2][0],abs(i+2-l[nid])+s)
            if i+1 < n:
                dp[i+1][1] = min(dp[i+1][1],abs(i+1-l[nid])+s)
        else:
            if i+2 < n:
                dp[i+2][1] = min(dp[i+2][1],abs(i+2-l[nid])+s)
    # print(i,dp[i])

score = min(score,min(dp[-1]),min(dp[-2]))
print(ans,score)
0