C题WA了28发,不知道哪里错了,哭了^_^ 我的思路是贪心,枚举所有可以选择的点,然后每次都选择可以向交最多现有的园的点, 这个哪里错了,过了90%case ... 求助大佬 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; const int N = 1e5+7; struct cir{ ll x,y,r; }a[30]; int tag[30]; int can(ll x1,ll y1,ll R,ll x2, ll y2,...