T1 求时间间隔最短的两个时刻 排序,求最短的相邻时刻的时间间隔。 #include <bits/stdc++.h> using namespace std; void Solve() { int n; scanf("%d", &n); vector<int> a(n); for (int x, y, i = 0; i < n; ++i) { scanf("%02d:%02d", &x, &y); a[i] = x * 60 +...