qzezoj[Moocast-S]題解--zhengjun
n n n 次 d f s dfs dfs 即可,細節見程式碼
直接用兩點間距離公式: d = ( x 1 − x 2 ) 2 + ( y 1 − y 2 ) 2 d=\sqrt{(x_1-x_2)^2+(y_1-y_2)^2} d=(x1−x2)2+(y1−y2)2
看一下能不能從 u u u 到 v v v,如果可以的話,就繼續搜下去,否則就回溯。
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;
int n;
struct zj{
int x,y,r;
}a[201];
double d(int i,int j){
return sqrt(double(a[i].x-a[j].x)*(a[i].x-a[j].x)+(a[i].y-a[j].y)*(a[i].y-a[j].y));
}
int vis[201];
void dfs(int x){
if(vis[x])return;//已經到了之前經過的點
vis[x]=1;//標記已經經過
for(int i=1;i<=n;i++){
if(i==x)continue;//不要重複走自己
if(d(x,i)<=a[x].r)dfs(i);//可以傳送到
}
}
int main(){
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d%d%d",&a[i].x,&a[i].y,&a[i].r);
}
int ans=0;
for(int i=1;i<=n;i++){
memset(vis,0,sizeof(vis));//注意每次要清零
dfs(i);
int sum=0;
for(int j=1;j<=n;j++)sum+=vis[j];//求出一共可以到達多少個點
if(ans<sum)ans=sum;//更新答案
}
printf("%d",ans);
return 0;
}
相關文章
- 解題
- 題解
- 每日"兩"題 題解
- XYCTF pwn部分題解 (部分題目詳解)
- 無題號 分配問題 題解
- LeetCode題解第122題LeetCode
- 火星商店問題 題解
- Minlexes題解
- 杯子題解
- Determinant 題解NaN
- 20240805題解
- 排列 題解
- 題解集合
- 20240726題解
- OVO題解
- 樹的解構 題解
- Tarjan縮點題單 刷題題解
- Leetcode題解1-50題LeetCode
- 雙模數問題 題解
- leetcode題解(陣列問題)LeetCode陣列
- csp-s真題題解
- 【題解】Solution Set - 「藍」題板刷
- 《扶蘇的問題》題解
- 費解的開關 - 題解
- 題解筆記筆記
- [atcoder 353] [題解】
- 開擺題解
- LDOI 題解合集
- Towers of Hanoi題解
- The FLARE On Challenge題解
- [leetcode 題解] 849LeetCode
- 題解-翻棋子
- 假日住宿題解
- Leetcode 全套題解LeetCode
- 彈珠 題解
- 聯考題解
- 數列 題解
- CF 1253 題解