結果

問題 No.306 さいたま2008
ユーザー Kmcode1Kmcode1
提出日時 2015-11-27 22:46:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 96,432 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-10-12 00:14:00
合計ジャッジ時間 1,801 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
#include<unordered_map>
#include<unordered_set>
using namespace std;
double xa;
double ya;
double xb;
double yb;
double f(double y) {
	return sqrt(xa*xa + (ya - y)*(ya - y)) + sqrt(xb*xb + (yb - y)*(yb - y));
}
int main() {
	cin >> xa >> ya >> xb >> yb;
	double mint = 0;
	double maxt = 1145141919;
	while ((maxt-mint)>0.0000001&&clock()/(double)(CLOCKS_PER_SEC)<1.5) {
		double sa = maxt - mint;
		sa /= 3.0;
		double mid1 = mint + sa;
		double mid2 = mid1 + sa;
		if (f(mid1) > f(mid2)) {
			mint = mid1;
		}
		else {
			maxt = mid2;
		}
	}
	printf("%.7f\n", mint);
	return 0;
}
0