結果
問題 | No.2029 Swap Min Max Min |
ユーザー | Carpenters-Cat |
提出日時 | 2022-08-06 00:18:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,010 bytes |
コンパイル時間 | 2,036 ms |
コンパイル使用メモリ | 202,752 KB |
実行使用メモリ | 5,632 KB |
最終ジャッジ日時 | 2024-09-15 22:17:33 |
合計ジャッジ時間 | 7,588 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | RE | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | WA | - |
testcase_44 | RE | - |
ソースコード
#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; now ++; ans1 += abs(B[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; } }