0
点赞
收藏
分享

微信扫一扫

FZU - 2213 Common Tangents

那小那小 2022-10-18 阅读 88


​​FZU - 2213  Common Tangents ​​


Problem 2213 Common Tangents

Accept: 836    Submit: 2436
Time Limit: 1000 mSec    Memory Limit : 32768 KB

Problem Description


Two different circles can have at most four common tangents.

The picture below is an illustration of two circles with four common tangents.

Now given the center and radius of two circles, your job is to find how many common tangents between them.


Input


The first line contains an integer T, meaning the number of the cases (1 <= T <= 50.).

For each test case, there is one line contains six integers x1 (−100 ≤ x1 ≤ 100), y1 (−100 ≤ y1 ≤ 100), r1 (0 < r1 ≤ 200), x2 (−100 ≤ x2 ≤ 100), y2 (−100 ≤ y2 ≤ 100), r2 (0 < r2 ≤ 200). Here (x1, y1) and (x2, y2) are the coordinates of the center of the first circle and second circle respectively, r1 is the radius of the first circle and r2 is the radius of the second circle.


Output


For each test case, output the corresponding answer in one line.

If there is infinite number of tangents between the two circles then output -1.


Sample Input


310 10 5 20 20 510 10 10 20 20 1010 10 5 20 10 5


Sample Output


423

今天组队积分赛的题,队友很给力,A了五道题

这一道题是给出两个圆的圆心和半径,让你判断出来这两个圆有多少条公共切线

第一种情况:

FZU - 2213  Common Tangents_ios

第二种情况:


FZU - 2213  Common Tangents_ios_02

第三种情况:

FZU - 2213  Common Tangents_#include_03

第四种情况:

FZU - 2213  Common Tangents_ios_04

第六种情况:

FZU - 2213  Common Tangents_#include_05

第七种情况:

FZU - 2213  Common Tangents_ios_06

所以,代码如下:


#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<iostream>
using namespace std;

int main()
{
int t;
scanf("%d",&t);
while(t--)
{
double x1,x2,r1,y1,y2,r2;
scanf("%lf %lf %lf %lf %lf %lf",&x1,&y1,&r1,&x2,&y2,&r2);
double d=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
if(x1==x2&&y1==y2)
{
if(r1==r2) cout<<"-1"<<endl;
else cout<<"0"<<endl;
}
else if(d>r1+r2) cout<<"4"<<endl;
else if(d==r1+r2) cout<<"3"<<endl;
else if(d<r1+r2&&d>fabs(r1-r2)) cout<<"2"<<endl;
else if(d==fabs(r1-r2)) cout<<"1"<<endl;
else if(d<fabs(r1-r2)) cout<<"0"<<endl;
}
return 0;
}



如有错误,请您指出,谢谢



举报

相关推荐

0 条评论