結果

問題 No.306 さいたま2008
ユーザー kongarishisyamokongarishisyamo
提出日時 2016-06-09 16:18:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 60,052 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-04-17 12:14:40
合計ジャッジ時間 1,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cmath>

using namespace std;

double xa, ya, xb, yb;
double f(double py){
	return sqrt(pow(xa - 0, 2) + pow(ya - py, 2)) + sqrt(pow(xb - 0, 2) + pow(yb - py, 2));
}
double search(double l, double r,int cnt){
	while(cnt--){
		if(f((l*2+r)/3)<f((l+r*2)/3)) r=(l+r*2)/3;
		else l=(l*2+r)/3;
	}
	return (l+r)*0.5;
}


int main(){


	cin >> xa >> ya;
	cin >> xb >> yb;

	printf("%.12f\n",search(0, 1000, 10000));
}
0