結果

問題 No.609 Noelちゃんと星々
ユーザー Kutimoti_TKutimoti_T
提出日時 2018-06-05 17:35:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 1,469 ms
コンパイル使用メモリ 161,124 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 09:56:38
合計ジャッジ時間 3,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
5,248 KB
testcase_01 AC 22 ms
5,376 KB
testcase_02 AC 15 ms
5,376 KB
testcase_03 AC 20 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 50 ms
5,376 KB
testcase_06 AC 43 ms
5,376 KB
testcase_07 AC 26 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 17 ms
5,376 KB
testcase_10 AC 32 ms
5,376 KB
testcase_11 AC 31 ms
5,376 KB
testcase_12 AC 38 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 44 ms
5,376 KB
testcase_16 AC 51 ms
5,376 KB
testcase_17 AC 41 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 44 ms
5,376 KB
testcase_20 AC 53 ms
5,376 KB
testcase_21 AC 53 ms
5,376 KB
testcase_22 AC 53 ms
5,376 KB
testcase_23 AC 53 ms
5,376 KB
testcase_24 AC 53 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++)

i64 N;
vector<i64> X;

i64 f(i64 k){
  i64 ans = 0;
  for(i64 x : X){
    ans += abs(x - k);
  }
  return ans;
}

int main(){
  cin >> N;
  X.resize(N);
  rep(i,0,N - 1) cin >> X[i];

  i64 x0 = -1e9;
  i64 x3 = 1e9;
  while(x3 - x0 > 10){
    i64 x1 = (x0 * 2 + x3) / 3;
    i64 x2 = (x0 + x3 * 2) / 3;
    if(f(x1) < f(x2)){
      x3 = x2;
    }
    else{
      x0 = x1;
    }
  }
  i64 MIN = f(x0);
  rep(i,x0,x3){
    MIN = min(MIN,f(i));
  }
  cout << MIN << endl;
}
0