結果

問題 No.837 Noelちゃんと星々2
ユーザー 👑 emthrmemthrm
提出日時 2019-06-14 23:04:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,901 bytes
コンパイル時間 1,355 ms
コンパイル使用メモリ 132,904 KB
実行使用メモリ 8,532 KB
最終ジャッジ日時 2024-04-26 21:33:53
合計ジャッジ時間 2,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <chrono>
#define _USE_MATH_DEFINES
#include <cmath>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iostream>
#include <iterator>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;

#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

const int INF = 0x3f3f3f3f;
const long long LINF = 0x3f3f3f3f3f3f3f3fLL;
const double EPS = 1e-8;
const int MOD = 1000000007; // 998244353;
const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
/*-------------------------------------------------*/
int main() {
  cin.tie(0); ios::sync_with_stdio(false);
  // freopen("input.txt", "r", stdin);

  int n; cin >> n;
  set<int> st;
  vector<int> y(n);
  REP(i, n) {
    cin >> y[i];
    st.emplace(y[i]);
  }
  if (st.size() == 1) {
    cout << 1 << '\n';
    return 0;
  }
  sort(ALL(y));
  vector<int> low, high;
  if (n & 1) {
    int tmp = (n + 1) / 4;
    low.emplace_back(y[tmp]);
    if (n % 4 == 3) low.emplace_back(y[tmp - 1]);
    int mid = n / 2;
    tmp = (n + mid) / 2;
    high.emplace_back(y[tmp]);
    if (n % 4 == 3) high.emplace_back(y[tmp - 1]);
  } else {
    int tmp = n / 4;
    low.emplace_back(y[tmp]);
    if (n % 4 == 0) low.emplace_back(y[tmp - 1]);
    int mid = n / 2;
    tmp = (n + mid) / 2;
    high.emplace_back(y[tmp]);
    if (n % 4 == 0) high.emplace_back(y[tmp - 1]);
  }
  long long ans = LINF;
  for (int l : low) for (int h : high) {
    long long sum = 0;
    REP(i, n) sum += min(abs(y[i] - l), abs(y[i] - h));
    ans = min(ans, sum);
  }
  cout << ans << '\n';
  return 0;
}
0