#include<bits/stdc++.h>
using namespace std;
struct Country {
int id; // 国家号
int goldNum, medalNum; // 金牌数和奖牌数
float goldRatio, medalRatio; // 金牌人口比例和奖牌人口比例
int rank1 = 0, rank2 = 0, rank3 = 0, rank4 = 0; // 四种排名方式对应的排名
} country;
bool cmp(Country c1, Country c2) {
r...