본문 바로가기
백준

[1181] 단어 정렬

by Jcoder 2018. 7. 14.


#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;
bool cmp(const string &a, const string &b)
{
if (a.size() == b.size())
return a < b;
return a.size() < b.size();
}
int main()
{
vector<string> v;
int n;
cin >> n;
for (int i = 0; i < n; i++)
{
string str;
cin >> str;
v.push_back(str);
}
vector<string>::iterator iter;
sort(v.begin(), v.end(), cmp);
v.erase(unique(v.begin(), v.end()), v.end());
for (iter = v.begin(); iter != v.end(); iter++)
cout << *iter << endl;
return 0;
}




'백준' 카테고리의 다른 글

[2581] 소수  (0) 2018.07.17
[1978] 소수 찾기  (0) 2018.07.17
[1427] 소트인사이드  (0) 2018.07.14
[2108] 통계학  (0) 2018.07.14
[2750] 수 정렬하기1, 2  (0) 2018.07.14