Safest Buildings ZOJ - 3993
阿新 • • 發佈:2018-11-23
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3993
之前舍友和我說的這個題 當時第一反應是求圓的面積交 果斷掉坑裡。。只判圓心距就夠了 凡事要三思後行。。
大圈以x*x+y*y==R*R 小圈圓心的選擇範圍則是x*x+y*y==(R-r)*(R-r) 每個建築物在原來位置擴充套件為半徑為r的圓 和前面那個圓的
面積交越大則安全性越高 但是這些小圓面積相等 求圓心距就好
#include <bits/stdc++.h> using namespace std; typedef long long ll; const ll N=0x3f3f3f3f3f3f3f3f; const int maxn=1e2+10; ll x[maxn],y[maxn]; ll r1,r2; int ans[maxn]; int n,tot; int main() { ll minn,tmp; int t,i; scanf("%d",&t); while(t--){ scanf("%d%lld%lld",&n,&r1,&r2); r1-=r2; for(i=1;i<=n;i++) scanf("%lld%lld",&x[i],&y[i]); tot=0,minn=N; for(i=1;i<=n;i++){ tmp=max(x[i]*x[i]+y[i]*y[i],(r1-r2)*(r1-r2)); if(minn==tmp) ans[++tot]=i; else if(minn>tmp) ans[tot=1]=i; minn=min(minn,tmp); } printf("%d\n",tot); for(i=1;i<=tot;i++){ printf("%d",ans[i]); if(i<tot) printf(" "); else printf("\n"); } } return 0; }