#include <iostream> #include <algorithm> #include <vector> using namespace std; const int inf = 99999999; struct station { double price, dis; }; bool cmp1(station a, station ...