結果
問題 |
No.306 さいたま2008
|
ユーザー |
|
提出日時 | 2016-01-30 01:34:39 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,765 bytes |
コンパイル時間 | 739 ms |
コンパイル使用メモリ | 61,332 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 18:56:41 |
合計ジャッジ時間 | 1,257 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 19 |
ソースコード
#include <iostream> #include <math.h> const long double INC_MIN = 0.0000000000001; long double sqr(long double s) { long double x = s / 2.0; long double last_x = 0.0; while (x != last_x) { last_x = x ; x = (x + s / x) / 2.0 ; } return x ; } long double pyt(long double sa, long double sb) { return ::sqr((sa * sa) + (sb * sb)); } long double f(long double ax, long double ay, long double bx, long double by) { long double p_min = ay < by? ay: by; long double p_len = ::fabs(ay - by); long double p_max = p_min + p_len; long double rc = ax - p_max; long double wk = pyt(ax, p_len) + bx; long double inc = 1; long double n = 0; long double begin = 0; long double end = p_len; while (inc > INC_MIN) { n = begin; while (n <= end) { long double a = pyt(ax, (ay < by? n: (p_len - n))); long double b = pyt(bx, (by < ay? n: (p_len - n))); long double w = a + b; if (w < wk) { wk = w; rc = n; } n += inc; } std::cout << "=============" << std::endl; std::cout << begin << std::endl; std::cout << end << std::endl; std::cout << inc << std::endl; std::cout << n << std::endl; std::cout << rc << std::endl; if (rc >= (inc * 10)) begin = rc - (inc * 10); end = rc + (inc * 10); inc /= 10; } return p_min + rc; } int main() { std::cout.precision(20); long double ax, ay, bx, by; std::cin >> ax; std::cin >> ay; std::cin >> bx; std::cin >> by; if (ay == by) std::cout << ay << std::endl; else std::cout << f(ax, ay, bx, by) << std::endl; return 0; }