Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60315 | xujindong | S1 | C++ | 通过 | 100 | 118 MS | 252 KB | 681 | 2022-10-15 11:25:00 |
#include<bits/stdc++.h> using namespace std; int t; double a,b,c,d,e,f,g; template<typename T>void in(T &a) { T ans=0; bool f=0; char c=getchar(); for(;c<'0'||c>'9';c=getchar())if(c=='-')f=1; for(;c>='0'&&c<='9';c=getchar())ans=ans*10+c-'0'; a=(f?-ans:ans); } void solve(){ double x,y; if(b==d)x=e,y=b; else if(a==c)x=a,y=f; else{ double k1=(b-d)/(a-c),b1=b-k1*a; x=-(b1-f-e/k1)/(k1+1/k1),y=k1*x+b1; } printf("%.2lf %.2lf\n",sqrt((x-e)*(x-e)+(y-f)*(y-f))-g,sqrt(max((a-e)*(a-e)+(b-f)*(b-f),(c-e)*(c-e)+(d-f)*(d-f)))+g); } int main(){ in(t); while(t--)in(a),in(b),in(c),in(d),in(e),in(f),in(g),solve(); return 0; }