結果

問題 No.2315 Flying Camera
ユーザー tnakao0123tnakao0123
提出日時 2023-06-23 17:20:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 44,460 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-13 12:17:26
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2315.cc:  No.2315 Flying Camera - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 300;
const int INF = 1 << 30;

/* typedef */

/* global variables */

int xs[MAX_N], ys[MAX_N];

/* subroutines */

int calc(int n, int as[], int a0) {
  int sum = 0;
  for (int i = 0; i < n; i++) sum += abs(as[i] - a0);
  return sum;
}

int bsearch(int n, int as[]) {
  sort(as, as + n);
  int a0 = as[0], a1 = as[n - 1];
  while (a0 + 2 < a1) {
    int aa0 = (a0 * 2 + a1) / 3;
    int aa1 = (a0 + a1 * 2) / 3;
    int c0 = calc(n, as, aa0);
    int c1 = calc(n, as, aa1);
    if (c0 > c1) a0 = aa0;
    else a1 = aa1;
  }

  int minc = INF;
  for (int a = a0; a <= a1; a++)
    minc = min(minc, calc(n, as, a));
  return minc;
}

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d%d", xs + i, ys + i);

  int xc = bsearch(n, xs), yc = bsearch(n, ys);
  printf("%d\n", xc + yc);
  
  return 0;
}
0