#include <iostream> #include <queue> using namespace std; class People { private: int index; string name; short age; public: People(int index, string &name, short age) : index(index), name(move(name)), age(age){} bool operator >(const People& p) const { if...