其他分享
首页 > 其他分享> > Yet Another Problem About Pi(数学问题)

Yet Another Problem About Pi(数学问题)

作者:互联网

Yet Another Problem About Pi

题意:

​ 平面上有无穷个长,宽为w,d的矩形方格。你有一条长度为Π的曲线可以任意弯折,起点任意,求曲线最多经过的方格数目(不计边界)

思路:

​ 先考虑最坏情况:对应max(w,d)>PI时,我们不能越过任何一个方格,此时我们的最佳方案应该是以四个矩形方格的交点为起点,向周围走一圈,最小结果为4

代码:

#include <bits/stdc++.h>
using namespace std;
#define int long long
const double PI = acos(-1);
signed main() {
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
    int t;
    cin>>t;
    while(t--){
    	double n,m;
    	cin>>n>>m;
    	int res=0;
    	double xie=sqrt(n*n+m*m);
    	double mi=min(n,m);
    	for(int i=0;i<3;i++){
    		if(i*mi<=PI){
    			res=max(res,(int)(4+i*2+floor((PI-i*mi)/xie)*3));
			}
    		if(i*xie<=PI){
    			res=max(res,(int)(4+i*3+floor((PI-i*xie)/mi)*2));
			}
		}
		cout<<res<<endl;
	}
    return 0;
}

标签:About,int,double,曲线,cin,方格,Another,Problem,越过
来源: https://www.cnblogs.com/CurryBP/p/15136288.html