結果

問題 No.2029 Swap Min Max Min
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2022-08-06 00:23:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,034 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 204,480 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-09-15 22:20:59
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 33 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 40 ms
5,376 KB
testcase_07 AC 39 ms
5,376 KB
testcase_08 AC 52 ms
5,376 KB
testcase_09 AC 15 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 21 ms
5,376 KB
testcase_12 AC 26 ms
5,376 KB
testcase_13 AC 56 ms
5,376 KB
testcase_14 AC 60 ms
5,376 KB
testcase_15 AC 59 ms
5,504 KB
testcase_16 AC 59 ms
5,376 KB
testcase_17 AC 55 ms
5,376 KB
testcase_18 AC 62 ms
5,632 KB
testcase_19 AC 59 ms
5,376 KB
testcase_20 AC 61 ms
5,376 KB
testcase_21 AC 59 ms
5,376 KB
testcase_22 AC 58 ms
5,376 KB
testcase_23 AC 62 ms
5,504 KB
testcase_24 AC 62 ms
5,504 KB
testcase_25 AC 61 ms
5,376 KB
testcase_26 AC 60 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 53 ms
5,376 KB
testcase_39 AC 58 ms
5,376 KB
testcase_40 AC 52 ms
5,376 KB
testcase_41 AC 56 ms
5,504 KB
testcase_42 AC 56 ms
5,376 KB
testcase_43 AC 57 ms
5,376 KB
testcase_44 AC 61 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
    int N;
    cin >> N;
    std::vector<ll> A(N);
    for (auto& a : A) {
        cin >> a;
    }
    cout << N / 2 << " ";
    if (N % 2) {
        ll ans = 0;
        ll now = 1;
        for (int i = 0; i < N; i ++) {
            if (A[i] <= N / 2) {
                ans += abs(now - i);
                now += 2;
            }
        }
        cout << ans << endl;
    } else {
        ll ans1 = 0;
        ll now = 0;
        vector<ll> B(N / 2);
        for (int i = 0; i < N; i ++) {
            if (A[i] <= N / 2) {
                B[now] = i - now * 2;
                ans1 += abs(B[now]);
                now ++;
            }
        }
        ll ans2 = 0;
        now = 0;
        for (int i = 0; i < N / 2; i ++) {
            if (B[i] > 0) {
                now --;
            } else {
                now ++;
            }
            ans2 = min(ans2, now);
        }
        cout << ans2 + ans1 << endl;
        // return 139;
    }
}
0