提交记录 49352
| 提交时间 |
评测时间 |
| 2026-09-19 15:54:53 |
2026-09-19 15:55:46 |
#include <stdio.h>
typedef long long ll;
static int fa[1005];
static ll x[1005],y[1005],z[1005];
static int find(int a){ while(fa[a]!=a){ fa[a]=fa[fa[a]]; a=fa[a]; } return a; }
int main(){
int T; if(scanf("%d",&T)!=1) return 0;
while(T--){
int n; ll h,r; scanf("%d %lld %lld",&n,&h,&r);
for(int i=0;i<n;i++) scanf("%lld %lld %lld",&x[i],&y[i],&z[i]);
for(int i=0;i<=n+1;i++) fa[i]=i;
ll rr=4*r*r;
for(int i=0;i<n;i++){
if(z[i]-r<=0) fa[find(i)]=find(n);
if(z[i]+r>=h) fa[find(i)]=find(n+1);
for(int j=0;j<i;j++){
ll dx=x[i]-x[j], dy=y[i]-y[j], dz=z[i]-z[j];
if(dx*dx+dy*dy+dz*dz<=rr) fa[find(i)]=find(j);
}
}
printf("%s\n", find(n)==find(n+1)?"Yes":"No");
}
return 0;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 14.39 us | 32 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #2 | 19.83 us | 32 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #3 | 15.09 us | 32 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #4 | 33.66 us | 32 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #5 | 3.439 ms | 44 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #6 | 6.854 ms | 44 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #7 | 13.559 ms | 44 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #8 | 12.173 ms | 44 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #9 | 13.083 ms | 44 KB | Accepted | Score: 10 | 显示更多 |
| Testcase #10 | 13.112 ms | 44 KB | Accepted | Score: 10 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-09-23 12:05:42 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠