1. 题目大意:批处理任务,求最短时间 #include <algorithm> #include <iostream> #include <vector> using namespace std; int main() { int n, c; cin >> n >> c; vector<int> t(n); for(int i = 0; i < n; ++i) { cin >> t[i]; } sort(t.begin(), ...