結果
問題 | No.2632 Center of Three Points in Lp Norm |
ユーザー | ir5 |
提出日時 | 2024-06-13 01:33:27 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,597 bytes |
コンパイル時間 | 4,707 ms |
コンパイル使用メモリ | 140,976 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-13 01:33:35 |
合計ジャッジ時間 | 8,252 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
6,816 KB |
testcase_01 | AC | 27 ms
6,812 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 26 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
6,940 KB |
testcase_12 | AC | 25 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | AC | 27 ms
6,944 KB |
testcase_15 | AC | 27 ms
6,944 KB |
testcase_16 | AC | 13 ms
6,944 KB |
testcase_17 | AC | 26 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 17 ms
6,944 KB |
testcase_21 | AC | 27 ms
6,944 KB |
testcase_22 | AC | 26 ms
6,944 KB |
testcase_23 | AC | 26 ms
6,940 KB |
testcase_24 | AC | 25 ms
6,940 KB |
testcase_25 | AC | 27 ms
6,944 KB |
testcase_26 | AC | 26 ms
6,940 KB |
testcase_27 | AC | 24 ms
6,944 KB |
testcase_28 | AC | 26 ms
6,940 KB |
testcase_29 | AC | 26 ms
6,944 KB |
testcase_30 | AC | 24 ms
6,944 KB |
testcase_31 | AC | 24 ms
6,944 KB |
testcase_32 | AC | 27 ms
6,940 KB |
testcase_33 | AC | 26 ms
6,940 KB |
testcase_34 | AC | 12 ms
6,944 KB |
testcase_35 | AC | 27 ms
6,940 KB |
testcase_36 | AC | 20 ms
6,940 KB |
testcase_37 | AC | 27 ms
6,944 KB |
ソースコード
#include <algorithm> #include <cassert> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <iostream> #include <tuple> #include <vector> #include <map> #include <set> #include <queue> #include <ranges> #include <iomanip> using namespace std; using ll = long long; auto range(int n) { return views::iota(0, n); } template<class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p){ return os << "{" << p.first << ", " << p.second << "}"; } template<typename T> ostream& operator<<(ostream& os, const vector<T>& obj) { os << "{"; for (const auto& e : obj) os << e << ", "; return os << "}"; } template<typename T> ostream& operator<<(ostream& os, const set<T>& obj) { os << "set{"; for (const auto& e : obj) os << e << ", "; return os << "}"; } template<typename T, typename U> ostream& operator<<(ostream& os, const map<T, U>& obj) { os << "map{"; for (const auto& e : obj) os << e << ", "; return os << "}"; } #ifdef ONLINE_JUDGE #define dump(expr) ; #else #define dump(expr) { cerr << "\033[33m#L" << __LINE__ << ": " << expr << "\033[39m" << endl; } #endif using ld = long double; ld p; vector<ld> vx(3), vy(3); ld fun(int i, int j, ld x, ld y) { // robust return pow(pow(abs(x - vx[i]), p) + pow(abs(y - vy[i]), p), 1.0 / p) - pow(pow(abs(x - vx[j]), p) + pow(abs(y - vy[j]), p), 1.0 / p); } const ld INF = 1e99; ld find_y(int i, int j, ld x0) { ld lo = -1e6, hi = 1e6; ld lof = fun(i, j, x0, lo); ld hif = fun(i, j, x0, hi); if (lof > 0 && hif > 0) return -INF; if (lof < 0 && hif < 0) return INF; for (int it : range(80)) { ld y = (lo + hi) / 2; ld f = fun(i, j, x0, y); if ((f > 0) == (lof > 0)) { lo = y; lof = f; } else { hi = y; hif = f; } } return lo; } ld diff(ld x) { auto y01 = find_y(0, 1, x); auto y02 = find_y(0, 2, x); return y01 - y02; } int main() { cout << fixed << setprecision(14); cin >> p; for (int i : range(3)) cin >> vx[i] >> vy[i]; { ld x0 = 0; ld y0 = find_y(0, 2, x0); dump(y0); dump(fun(0, 2, x0, y0)); } if (vx[0] == vx[1]) { swap(vx[0], vx[2]); swap(vy[0], vy[2]); } if (vx[0] == vx[2]) { swap(vx[0], vx[1]); swap(vy[0], vy[1]); } ld lo = -1e6, hi = 1e6; ld lod = diff(lo); ld hid = diff(hi); dump(lod); dump(hid); for (int it : range(80)) { ld x = (lo + hi) / 2; ld d = diff(x); if ((d > 0) == (lod > 0)) { lo = x; lod = d; } else { hi = x; hid = d; } } dump(lo); cout << lo << " " << find_y(0, 1, lo) << endl; }