結果

問題 No.731 等差数列がだいすき
ユーザー polylogKpolylogK
提出日時 2018-09-07 22:05:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,403 bytes
コンパイル時間 1,723 ms
コンパイル使用メモリ 170,136 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 13:53:40
合計ジャッジ時間 6,395 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 62 ms
5,248 KB
testcase_04 AC 165 ms
5,248 KB
testcase_05 AC 62 ms
5,248 KB
testcase_06 AC 242 ms
5,248 KB
testcase_07 AC 131 ms
5,248 KB
testcase_08 AC 165 ms
5,248 KB
testcase_09 AC 207 ms
5,248 KB
testcase_10 AC 246 ms
5,248 KB
testcase_11 AC 9 ms
5,248 KB
testcase_12 AC 117 ms
5,248 KB
testcase_13 AC 154 ms
5,248 KB
testcase_14 AC 185 ms
5,248 KB
testcase_15 AC 226 ms
5,248 KB
testcase_16 AC 122 ms
5,248 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 288 ms
5,248 KB
testcase_20 AC 299 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

double cost(double b, double d) {
	double ret = 0.0;
	for(int i = 0; i < n; i++) {
		ret += (a[i] - b) * (a[i] - b);
		b += d;
	}
	
	assert(ret >= 0);
	return ret;
}

double solve_D(double b, double lim) {
	double left, right;
	if(b < 0) left = 0, right = lim;
	else left = -lim, right = lim;
	
	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) <= cost(b, mr)) {
			right = mr;
		} else {
			left = ml;
		}
	}
	
	return (left + right) / 2.0;
}

double solve_B(double lim) {
	double left = -1e6, right = 1e6;
	
	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, lim)) <= cost(mr, solve_D(mr, lim))) {
			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(1e5);
	double d = solve_D(b, 1e5);
	double c = cost(b, d);
	double B = solve_B(4e5);
	double D = solve_D(B, 4e5);
	double C = cost(B, D);
	cout << std::fixed << std::setprecision(16);
	if(c < C) cout << b << " " << d << endl << c << endl;
	else cout << B << " " << D << endl << C << endl;
	return 0;
}
0