LightOj1366 - Pair of Touching Circles(求矩形内圆的对数)
Posted 西瓜不懂柠檬的酸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LightOj1366 - Pair of Touching Circles(求矩形内圆的对数)相关的知识,希望对你有一定的参考价值。
题目链接:http://lightoj.com/volume_showproblem.php?problem=1366
题意:一个H*W的矩形,现在要放入两个外切的圆,问能放多少对这样的圆,其中圆心和半径都是整数;
枚举相对的圆心坐标,根据圆心的距离,再枚举一个圆的半径;
#include<stdio.h> #include<iostream> #include<string.h> #include<algorithm> #include<cmath> #include<vector> #include<queue> #include<set> using namespace std; #define met(a, b) memset(a, b, sizeof(a)) #define maxn 10005 #define maxm 20005 #define INF 0x3f3f3f3f typedef long long LL; int main() { int T, H, W, t = 1; scanf("%d", &T); while(T--) { LL ans = 0; scanf("%d %d", &H, &W); for(int i=0; i<=W/2; i++)///把一个圆的圆心看成(0,0)时枚举另一个圆的圆心相对坐标(i,j); { for(int j=0; j<=H/2; j++) { if(i==0 && j==0) continue; int d = sqrt(i*i + j*j);///圆心之间的距离; if(d*d != i*i + j*j) continue; for(int r=1; r<d; r++)///枚举其中一个圆的半径; { int x1 = min(-r, i-(d-r)), x2 = max(r, i+(d-r)); int y1 = min(-r, j-(d-r)), y2 = max(r, j+(d-r));///手动画图就明白了; int x = x2 - x1, y = y2 - y1; if(x > W || y > H) continue; LL ret = (LL)(H-y+1)*(W-x+1); if(i*j) ret *= 2;///*2原因是当两个圆的圆心不是水平或垂直方向的时候可以斜着放的是两种情况(斜上)(斜下),我这里的相对位置是(斜上); ans += ret; } } } printf("Case %d: %lld\n", t++, ans);///%lld; } return 0; }
以上是关于LightOj1366 - Pair of Touching Circles(求矩形内圆的对数)的主要内容,如果未能解决你的问题,请参考以下文章
lightoj-1045 - Digits of Factorial(利用对数)
lightoj-1305 - Area of a Parallelogram(几何)
lightoj-1147 - Tug of War(状压dp)
E - Fantasy of a Summation LightOJ1213