mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 23:08:47 +00:00
parent
15193a9938
commit
dda252595e
29
UniversalOJ/9/9.cpp
Normal file
29
UniversalOJ/9/9.cpp
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <algorithm>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
const char endl = '\n';
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
int n;
|
||||||
|
|
||||||
|
cin >> n;
|
||||||
|
|
||||||
|
std::vector<std::string> v(n);
|
||||||
|
|
||||||
|
for (auto& s : v) cin >> s;
|
||||||
|
|
||||||
|
std::sort(v.begin(), v.end(), [&](const std::string& lhs, const std::string& rhs) -> bool {
|
||||||
|
return lhs.size() == rhs.size() ? lhs < rhs : lhs.size() < rhs.size();
|
||||||
|
});
|
||||||
|
|
||||||
|
for (auto& s : v) cout << s << endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user