1082 射击比赛 (20 分)

Posted hk456

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1082 射击比赛 (20 分)相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
struct s {
    string id;
    int dis;
} num[10010];   // 结构体数组变量开的大一点
bool cmp (s a, s b) {  // 形参中用结构体定义两个结构体变量
    return a.dis < b.dis;
}
int main() {
    int n, x, y;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> num[i].id >> x >> y;
        num[i].dis = x * x + y * y;    // 将其平方加入到结构体数组变量中
    }
    sort(num, num + n, cmp);   // 排序
    cout << num[0].id <<   << num[n - 1].id << endl;
    return 0;
}

 

以上是关于1082 射击比赛 (20 分)的主要内容,如果未能解决你的问题,请参考以下文章

PAT 1082 射击比赛 (20分)

PAT乙级1082 射击比赛 (20 分)

1082 射击比赛 (20 point(s))

PAT 1082. 射击比赛 (20)

PAT 1082 射击比赛

1082 射击比赛