#include<bits/stdc++.h>
using i128 = __int128; using i64 = long long; #define endl '\n' #define pii std::pair<int ,int> #define fix(x) std::fixed << std::setprecision(x) const i64 inf = 1e17 + 50, MAX_N = 1e5 + 50, mod = 1e9 + 7; std::mt19937_64 rng(std::chrono::system_clock::now().time_since_epoch().count());
struct Point { double x, y;
explicit Point(double x = 0, double y = 0) : x(x), y(y) {} };
struct Line { Point p, v;
explicit Line(Point p = Point(), Point v = Point()) : p(p), v(v) {} };
struct Circle { Point c; double r;
explicit Circle(Point c = Point(), double r = 0) : c(c), r(r) {} };
Point waixin(Point a, Point b, Point c) { double a1 = 2 * (b.x - a.x), b1 = 2 * (b.y - a.y), c1 = (b.x * b.x + b.y * b.y - a.x * a.x - a.y * a.y); double a2 = 2 * (c.x - a.x), b2 = 2 * (c.y - a.y), c2 = (c.x * c.x + c.y * c.y - a.x * a.x - a.y * a.y); double d = a1 * b2 - a2 * b1, h = (c1 * b2 - c2 * b1) / d, k = (a1 * c2 - a2 * c1) / d; return Point(h, k); }
std::string getLineCircleIntersection(Line L, Circle C) { double a = L.v.x, b = L.p.x - C.c.x; double c = L.v.y, d = L.p.y - C.c.y; double e = a * a + c * c; double f = 2 * (a * b + c * d); double g = b * b + d * d - C.r * C.r; double delta = f * f - 4 * e * g;
const double eps = 1e-3; if (delta < -eps) return "No"; if (fabs(delta) < eps) return "Or"; return "Yes"; }
void solve() { Point a[3]; for(auto &i : a) std::cin >> i.x >> i.y; Point center = waixin(a[0], a[1], a[2]); double r = hypot(center.x - a[0].x, center.y - a[0].y); Circle cir(center, r); Point p, v; std::cin >> p.x >> p.y >> v.x >> v.y; Line L = Line(p, v); std::cout << getLineCircleIntersection(L, cir) << endl; }
signed main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int T = 1; std::cin >> T; while (T--) solve(); return 0; }
|