#include <bits/stdc++.h> #define Rank pair<int,int> // <rank,rank type> using namespace std; using Country = class Node { public: int Golds, Medals, Population, Order; double GoldRatio, MedalRatio; vector<Rank> ranks; Node(int g, int m, int p, int o) : Gold...