HDOJ 2019 数列有序!
Posted mered1th
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDOJ 2019 数列有序!相关的知识,希望对你有一定的参考价值。
#include<vector> #include<iostream> #include<algorithm> #include<cstdio> using namespace std; bool cmp(int a, int b) { return a < b; } bool cmp2(int a, int b) { return a > b; } int main() { int n, m; while (cin >> n && cin >> m && (n != 0 && m != 0)) { vector<int> ans; int t; while (n--) { cin >> t; ans.push_back(t); } ans.push_back(m); if (ans[0] > ans[1]) { sort(ans.begin(), ans.end(), cmp2); } else { sort(ans.begin(), ans.end(), cmp); } for (auto it = ans.begin();it != ans.end();it++) { if (it == ans.begin()) cout << *it; else cout << " " << *it; } cout << endl; } return 0; }
有个坑点,题目中的有序没说是降序还是升序!
以上是关于HDOJ 2019 数列有序!的主要内容,如果未能解决你的问题,请参考以下文章