結果

問題 No.306 さいたま2008
ユーザー startcppstartcpp
提出日時 2015-11-27 22:57:39
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 4,484 KB
最終ジャッジ日時 2023-10-12 00:21:32
合計ジャッジ時間 11,346 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:33:14: warning: ‘pos’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  for( double y = pos - 0.01; y <= pos + 0.01; y += 2 * 1e-8 ){
              ^

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#define double long double
using namespace std;

int main()
{
	double x1, y1;
	double x2, y2;
	cin >> x1 >> y1;
	cin >> x2 >> y2;
	
	double pos, mind = 114514;
	for( double y = min(y1, y2); y <= max(y1, y2); y += 1e-4 ){
		double d = hypot(x1, y1 - y) + hypot(x2, y2 - y);
		if( d < mind ){
			mind = d;
			pos = y;
		}
	}
	
	for( double y = pos - 0.01; y <= pos + 0.01; y += 2 * 1e-8 ){
		double d = hypot(x1, y1 - y) + hypot(x2, y2 - y);
		if( d < mind ){
			mind = d;
			pos = y;
		}
	}
	printf("%.12f\n", pos);
	return 0;
}
0