結果

問題 No.2029 Swap Min Max Min
ユーザー mkawa2mkawa2
提出日時 2022-08-08 00:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 110,692 KB
最終ジャッジ日時 2024-09-17 16:12:44
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 99 ms
94,328 KB
testcase_04 AC 61 ms
74,496 KB
testcase_05 AC 57 ms
78,464 KB
testcase_06 AC 70 ms
96,512 KB
testcase_07 AC 81 ms
96,896 KB
testcase_08 AC 93 ms
102,496 KB
testcase_09 AC 58 ms
80,676 KB
testcase_10 AC 47 ms
70,452 KB
testcase_11 AC 69 ms
87,724 KB
testcase_12 AC 59 ms
84,508 KB
testcase_13 AC 97 ms
101,880 KB
testcase_14 AC 83 ms
105,580 KB
testcase_15 AC 101 ms
104,712 KB
testcase_16 AC 87 ms
104,496 KB
testcase_17 AC 96 ms
102,468 KB
testcase_18 AC 102 ms
104,788 KB
testcase_19 AC 87 ms
104,244 KB
testcase_20 AC 86 ms
104,860 KB
testcase_21 AC 85 ms
104,412 KB
testcase_22 AC 85 ms
104,384 KB
testcase_23 AC 93 ms
110,624 KB
testcase_24 AC 93 ms
106,160 KB
testcase_25 AC 83 ms
110,692 KB
testcase_26 AC 80 ms
106,380 KB
testcase_27 AC 35 ms
52,804 KB
testcase_28 AC 34 ms
52,768 KB
testcase_29 AC 35 ms
52,944 KB
testcase_30 AC 32 ms
53,056 KB
testcase_31 AC 34 ms
53,432 KB
testcase_32 AC 38 ms
58,444 KB
testcase_33 AC 35 ms
52,644 KB
testcase_34 AC 33 ms
52,452 KB
testcase_35 AC 34 ms
53,956 KB
testcase_36 AC 33 ms
53,712 KB
testcase_37 AC 33 ms
52,984 KB
testcase_38 AC 93 ms
106,292 KB
testcase_39 AC 85 ms
109,692 KB
testcase_40 AC 79 ms
106,108 KB
testcase_41 AC 88 ms
104,196 KB
testcase_42 AC 89 ms
103,844 KB
testcase_43 AC 81 ms
106,580 KB
testcase_44 AC 97 ms
105,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

def cost(aa):
    s = t = 0
    cs = [0]
    for a in aa:
        if a <= n//2:
            s += 1
            cs.append(abs(s-t)+cs[-1])
        else:
            t += 1
    return cs

n = II()
aa = LI()

ll = cost(aa)
if n & 1:
    y = ll[-1]
else:
    rr = cost(aa[::-1])[::-1]
    y = min(l+r for l, r in zip(ll, rr))

print(n//2, y)
0