#include<bits/stdc++.h>//万能头文件 using namespace std; typedef long long ll; //结构体 struct sort_time{ string name;//排序的名字 int time;//排序消耗的时间 }; bool sort_time_cmp(sort_time a,sort_time b) { return a.time<b.time; } //1...