結果

問題 No.731 等差数列がだいすき
ユーザー polylogKpolylogK
提出日時 2018-09-07 21:44:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,222 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 170,768 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 00:48:38
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 33 ms
5,376 KB
testcase_04 AC 91 ms
5,376 KB
testcase_05 AC 38 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 72 ms
5,376 KB
testcase_08 AC 87 ms
5,376 KB
testcase_09 AC 113 ms
5,376 KB
testcase_10 AC 129 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 60 ms
5,376 KB
testcase_13 AC 84 ms
5,376 KB
testcase_14 AC 98 ms
5,376 KB
testcase_15 AC 123 ms
5,376 KB
testcase_16 AC 65 ms
5,376 KB
testcase_17 AC 147 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 153 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long i64;
using std::cout;
using std::endl;
using std::cin;

std::vector<double> a;
int n;

double cost(double b, double d, bool f = false) {
	double ret = 0.0;
	for(int i = 0; i < n; i++) {
		ret += (a[i] - b) * (a[i] - b);
		b += d;
		
		if(ret > (1LL << 60)) return 1LL << 60;
	}
	
	return ret;
}

double solve_D(double b) {
	double left = -1e5, right = 1e5;
	
	for(int i = 0; i < 150; i++) {
		double ml = (left + left + right) / 3.0;
		double mr = (left + right + right) / 3.0;
		
		if(cost(b, ml, true) <= cost(b, mr, true)) {
			right = mr;
		} else {
			left = ml;
		}
	}
	
	return (left + right) / 2.0;
}

double solve_B() {
	double left = -1e5, right = 1e5;
	
	for(int i = 0; i < 150; i++) {
		double ml = (left + left + right) / 3.0;
		double mr = (left + right + right) / 3.0;
		
		if(cost(ml, solve_D(ml)) <= cost(mr, solve_D(mr))) {
			right = mr;
		} else {
			left = ml;
		}
	}
	
	return (left + right) / 2.0;
}	

int main(){
	cin >> n; a.resize(n);
	for(int i = 0; i < n; i++) cin >> a[i];
	
	double b = solve_B();
	double d = solve_D(b);
	double c = cost(b, d);
	cout << std::fixed << std::setprecision(10);
	cout << b << " " << d << endl << c << endl;
	return 0;
}
0