QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#620160 | #9103. Zayin and Fireball | Siwu | WA | 97ms | 3856kb | C++17 | 2.5kb | 2024-10-07 16:51:14 | 2024-10-07 16:51:29 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
struct circle{
double x,y,r;
};
double dis2(double x1,double y1,double x2,double y2){
return (x1-x2)*(x1-x2)+(y1-y2)*(y1-y2);
}
ll n;
circle C[509],c[509];
bool p_inner(double x1,double y1,circle &c){
if(dis2(x1,y1,c.x,c.y) <c.r*c.r) return 1;
return 0;
}
bool intersect(double& x1,double& y1,double& x2,double& y2,circle &c){
if(dis2(x1,y1,c.x,c.y)<c.r*c.r)return 1;
if(dis2(x2,y1,c.x,c.y)<c.r*c.r)return 1;
if(dis2(x1,y2,c.x,c.y)<c.r*c.r)return 1;
if(dis2(x2,y2,c.x,c.y)<c.r*c.r)return 1;
if(c.y>=min(y1,y2)&&c.y<=max(y1,y2)){
if(min(abs(c.x-x1),abs(c.x-x2))<c.r) return 1;
}
if(c.x>=min(x1,x2)&&c.x<=max(x1,x2)){
if(min(abs(c.y-y1),abs(c.y-y2))<c.r) return 1;
}
if(c.y>=min(y1,y2)&&c.y<=max(y1,y2)&&c.x>=min(x1,x2)&&c.x<=max(x1,x2)) return 1;
return 0;
}
bool cover(double& x1,double& y1,double& x2,double& y2,circle& c){
if(dis2(x1,y1,c.x,c.y)<=c.r*c.r&&dis2(x2,y1,c.x,c.y)<=c.r*c.r&&dis2(x1,y2,c.x,c.y)<=c.r*c.r&&dis2(x2,y2,c.x,c.y)<=c.r*c.r) return 1;
return 0;
}
int checkI(double &x1,double &y1,double &x2,double &y2,int i){
if(!intersect(x1,y1,x2,y2,C[i])) return 0;
if(cover(x1,y1,x2,y2,c[i])) return 0;
if(intersect(x1,y1,x2,y2,c[i])) return 1;
if(cover(x1,y1,x2,y2,C[i])) return 2;
return 1;
}
void solve(){
cin>>n;
for(ll i=1;i<=n;i++){
cin>>C[i].x>>C[i].y>>C[i].r;
cin>>c[i].x>>c[i].y>>c[i].r;
}
stack<pair<pair<double,double>,double>> q;
q.emplace(make_pair(-1200,-1200),2400);
double ans=0;
while(!q.empty()){
double x1=q.top().first.first,y1=q.top().first.second;
double r=q.top().second;
double x2=x1+r,y2=y1+r;
q.pop();
if(r*r<1e-4){
int ok=0;
for(int i=1;i<=n;i++){
if(p_inner(x1+r/2.0,y1+r/2.0,C[i])&&!p_inner(x1+r/2.0,y1+r/2.0,c[i])){
ok=1;
break;
}
}
if(ok) ans+=r*r;
continue;
}
int ok=0;
for(int i=1;i<=n;i++){
ok=max(ok,checkI(x1,y1,x2,y2,i));
if(ok==2) break;
}
if(ok==0) continue;
if(ok==2){
ans+=r*r;
continue;
}
double midx=(x1+x2)/2.0,midy=(y1+y2)/2.0;
q.emplace(make_pair(x1,y1),r/2.0);
q.emplace(make_pair(x1,midy),r/2.0);
q.emplace(make_pair(midx,midy),r/2.0);
q.emplace(make_pair(midx,y1),r/2.0);
}
cout<<fixed<<setprecision(6)<<ans<<'\n';
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
int n=1;
cin>>n;
while(n--)solve();
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 97ms
memory: 3856kb
input:
22 1 0 0 1 0 0 1 1 0 0 2 0 0 1 1 0 0 2 1 0 1 1 0 0 2 2 0 1 1 0 0 2 1 0 2 2 0 0 1 0 0 0 0 0 3 0 0 2 2 0 0 1 0 0 0 0 0 3 0 0 1 2 -233 0 3 -234 0 1 233 0 2 231 0 1 2 0 0 1 0 0 0 1 0 3 0 0 1 2 0 0 1 0 0 0 0 2 3 0 0 1 2 2 4 2 2 4 1 3 3 3 3 3 1 4 0 1 1 0 2 2 3 3 3 3 4 2 250 2 4 0 0 100 255 7 12 254 10 4 3...
output:
0.000000 9.418912 9.419080 11.158492 3.954414 18.858947 28.277859 36.295652 28.274171 28.272830 28.156992 417.830916 38.213851 125660.553910 125660.553910 125660.553575 125660.553575 31412.776625 39.576245 301.266555 18751.975754 70.905536
result:
wrong answer 2nd numbers differ - expected: '9.42478', found: '9.41891', error = '0.00062'