結果

問題 No.5020 Averaging
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2024-02-25 16:22:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 1,000 ms
コード長 845 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 170,476 KB
実行使用メモリ 6,548 KB
スコア 18,954,797
最終ジャッジ日時 2024-02-25 16:22:16
合計ジャッジ時間 3,444 ms
ジャッジサーバーID
(参考情報)
judge10 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 2 ms
6,548 KB
testcase_04 AC 1 ms
6,548 KB
testcase_05 AC 1 ms
6,548 KB
testcase_06 AC 2 ms
6,548 KB
testcase_07 AC 2 ms
6,548 KB
testcase_08 AC 2 ms
6,548 KB
testcase_09 AC 2 ms
6,548 KB
testcase_10 AC 2 ms
6,548 KB
testcase_11 AC 2 ms
6,548 KB
testcase_12 AC 2 ms
6,548 KB
testcase_13 AC 2 ms
6,548 KB
testcase_14 AC 2 ms
6,548 KB
testcase_15 AC 1 ms
6,548 KB
testcase_16 AC 2 ms
6,548 KB
testcase_17 AC 2 ms
6,548 KB
testcase_18 AC 2 ms
6,548 KB
testcase_19 AC 2 ms
6,548 KB
testcase_20 AC 2 ms
6,548 KB
testcase_21 AC 2 ms
6,548 KB
testcase_22 AC 1 ms
6,548 KB
testcase_23 AC 1 ms
6,548 KB
testcase_24 AC 1 ms
6,548 KB
testcase_25 AC 2 ms
6,548 KB
testcase_26 AC 2 ms
6,548 KB
testcase_27 AC 2 ms
6,548 KB
testcase_28 AC 2 ms
6,548 KB
testcase_29 AC 2 ms
6,548 KB
testcase_30 AC 1 ms
6,548 KB
testcase_31 AC 2 ms
6,548 KB
testcase_32 AC 2 ms
6,548 KB
testcase_33 AC 2 ms
6,548 KB
testcase_34 AC 2 ms
6,548 KB
testcase_35 AC 2 ms
6,548 KB
testcase_36 AC 2 ms
6,548 KB
testcase_37 AC 2 ms
6,548 KB
testcase_38 AC 2 ms
6,548 KB
testcase_39 AC 2 ms
6,548 KB
testcase_40 AC 2 ms
6,548 KB
testcase_41 AC 2 ms
6,548 KB
testcase_42 AC 2 ms
6,548 KB
testcase_43 AC 7 ms
6,548 KB
testcase_44 AC 2 ms
6,548 KB
testcase_45 AC 1 ms
6,548 KB
testcase_46 AC 2 ms
6,548 KB
testcase_47 AC 2 ms
6,548 KB
testcase_48 AC 1 ms
6,548 KB
testcase_49 AC 2 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const long long M = (long long)1e17 * 5;

long long Calc(long long A, long long B, long long C, long long D) {
  long long AvgA = (A + C) / 2;
  long long AvgB = (B + D) / 2;
  long long ErrorA = abs(M - AvgA);
  long long ErrorB = abs(M - AvgB);

  return ErrorA + ErrorB;
}

int main() {
	int N; cin >> N;
  vector<long long> A(59), B(59);
	for (int i = 1; i <= N; i++) cin >> A[i] >> B[i];

	cout << 50 << endl;
	for (int i = 1; i <= 50; i++) {
    pair<long long, int> Best = {1e18, 0};

    for (int j = 2; j <= N; j++) {
      long long E = Calc(A[1], B[1], A[j], B[j]);
      if (Best.first > E) {
        Best.first = E;
        Best.second = j;
      }
    }

    A[1] = (A[1] + A[Best.second]) / 2;
    B[1] = (B[1] + B[Best.second]) / 2;
    cout << 1 << ' ' << Best.second << endl;
	}
}
0