結果

問題 No.837 Noelちゃんと星々2
ユーザー 👑 emthrmemthrm
提出日時 2019-06-14 22:12:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,245 bytes
コンパイル時間 1,470 ms
コンパイル使用メモリ 133,292 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-04-26 16:58:06
合計ジャッジ時間 3,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 WA -
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<long long> y(n);
  REP(i, n) {
    cin >> y[i];
    st.emplace(y[i]);
  }
  if (st.size() == 1) {
    cout << 1 << '\n';
    return 0;
  }
  if (n == 2) {
    cout << 0 << '\n';
    return 0;
  }
  sort(ALL(y));
  vector<long long> cum(n + 1, 0);
  REP(i, n) cum[i + 1] = cum[i] + y[i];
  int i, j = n - 1;
  long long tmp = LINF;
  for (i = 0; i < j; ++i) {
    int l = i, r = n - 1;
    while (r - l > 1) {
      int mid = (r + l) / 2;
      (y[mid] - y[i] > y[j] - y[mid] ? r : l) = mid;
    }
    long long sum = y[i] * i - (cum[i] - cum[0]);
    sum += (cum[r] - cum[i]) - y[i] * (r - i);
    sum += y[j] * (j - r) - (cum[j] - cum[r]);
    sum += (cum[n] - cum[j]) - y[j] * (n - j);
    if (sum >= tmp) {
      --i;
      break;
    }
    tmp = sum;
  }
  tmp = LINF;
  for (; j > i; --j) {
    int l = i, r = n - 1;
    while (r - l > 1) {
      int mid = (r + l) / 2;
      (y[mid] - y[i] > y[j] - y[mid] ? r : l) = mid;
    }
    long long sum = y[i] * i - (cum[i] - cum[0]);
    sum += (cum[r] - cum[i]) - y[i] * (r - i);
    sum += y[j] * (j - r) - (cum[j] - cum[r]);
    sum += (cum[n] - cum[j]) - y[j] * (n - j);
    if (sum >= tmp) break;
    tmp = sum;
  }
  cout << tmp << '\n';
  return 0;
}
0