本题目给出的射击比赛的规则非常简单,谁打的弹洞距离靶心最近,谁就是冠军;谁差得最远,谁就是菜鸟。本题给出一系列弹洞的平面坐标(x,y),请你编写程序找出冠军和菜鸟。我们假设靶心在原点(0,0)。
输入在第一行中给出一个正整数 N(≤ 10 000)。随后 N 行,每行按下列格式给出:
ID x y
其中 ID
是运动员的编号(由 4 位数字组成);x
和 y
是其打出的弹洞的平面坐标(x
,y
),均为整数,且 0 ≤ |x
|, |y
| ≤ 100。题目保证每个运动员的编号不重复,且每人只打 1 枪。
输出冠军和菜鸟的编号,中间空 1 格。题目保证他们是唯一的。
3
0001 5 7
1020 -1 3
0233 0 -1
0233 0001
#include
#include
#include
#include
#include
struct node
{
char num[5];
int x;
int y;
struct node *next;
};
int main()
{
int n,i,a;
int max,min;
scanf("%d",&n);
struct node *p,*q,*head,*t;
struct node *MIN,*MAX;
head=NULL;
for(i=1; i<=n; i++)
{
p=(struct node *)malloc(sizeof(struct node));
scanf("%s %d %d",p->num,&p->x,&p->y);
p->next=NULL;
if(head==NULL)
head=p;
else
q->next=p;
q=p;
}
t=head;
max=t->x*t->x+t->y*t->y;
min=t->x*t->x+t->y*t->y;
MIN=MAX=t;
while(t!=NULL)
{
a=t->x*t->x+t->y*t->y;
if(max {
max=t->x*t->x+t->y*t->y;
MAX=t;
}
if(min>a)
{
min=t->x*t->x+t->y*t->y;
MIN=t;
}
t=t->next;
}
printf("%s %s",MIN->num,MAX->num);
}