摘要: #include <iostream>#include <vector>#include <algorithm>using namespace std;int main() { vector<int> times; int n, min = 0, t, t1, t2; cin>>n; for(int i=0;i<n;i++) { cin>>t; times.push_back(t); } sort(times.begin(), times.end()); for(int i=times.size()-1; i > 阅读全文
posted @ 2011-08-02 22:25 DOF_KL 阅读(191) 评论(0) 推荐(0) 编辑