本文共 777 字,大约阅读时间需要 2 分钟。
暴力枚举,大胆模拟。
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #include 12 using namespace std;13 const double Pi=3.14159265358979323846;14 typedef long long ll;15 const int MAXN=5000+5;16 const int dx[5]={ 0,0,0,1,-1};17 const int dy[5]={ 1,-1,0,0,0};18 const int INF = 0x3f3f3f3f;19 const int NINF = 0xc0c0c0c0;20 const ll mod=1e9+7;21 int a[100];22 struct node{23 int x,y;24 node (int x=0,int y=0) :x(x),y(y) {}25 };26 int main()27 {28 int k;int cnt=0;29 while(cin>>k)30 { 31 int cnt=0;ll b=k+1;32 vector V;33 while(1)34 {35 double a=b*k*1.0/(b-k);36 if(a
转载于:https://www.cnblogs.com/Msmw/p/10639959.html