码迷,mamicode.com
首页 > 其他好文 > 详细

1082 射击比赛

时间:2020-02-25 19:43:04      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:ios   amp   mamicode   tab   algo   return   ima   while   info   

水题。

 1 #include<iostream>
 2 #include<algorithm>
 3 using namespace std;
 4 
 5 int main() {
 6     int n,id,x,y, MIN = 0x3fffffff,MAX = -1,champion,vegetableBird;
 7     cin>>n;
 8     while(n--) {
 9         cin>>id>>x>>y;
10         if(MIN > x*x+y*y) {
11             MIN = x*x+y*y;
12             champion = id;
13         }
14         if(MAX < x*x+y*y) {
15             MAX = x*x+y*y;
16             vegetableBird = id;
17         }
18     }
19     printf("%04d %04d",champion,vegetableBird);
20     return 0;
21 }

技术图片

 

1082 射击比赛

标签:ios   amp   mamicode   tab   algo   return   ima   while   info   

原文地址:https://www.cnblogs.com/keep23456/p/12363251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!