반응형
문제
알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.
- 길이가 짧은 것부터
- 길이가 같으면 사전 순으로
입력
첫째 줄에 단어의 개수 N이 주어진다. (1≤N≤20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.
출력
조건에 따라 정렬하여 단어들을 출력한다. 단, 같은 단어가 여러 번 입력된 경우에는 한 번씩만 출력한다.
#include <iostream>
#include <vector>
#include<queue>
#include <string>
#include <map>
#include<algorithm>
using namespace std;
int N;
struct Node {
string word;
int len;
};
bool compare(Node n1, Node n2)
{
if (n1.len != n2.len)
{
return n1.len < n2.len;
}
else
{
return n1.word < n2.word;
}
}
vector<Node> vec;
map<string, bool> m;
int main(){
cin >> N;
for (int i = 0; i < N; i++)
{
string word;
int len;
cin >> word;
if (!m[word])
{
m[word] = true;
len = word.size();
vec.push_back({ word,len });
}
}
sort(vec.begin(), vec.end(), compare);
for (int i = 0; i < vec.size(); i++)
{
cout << vec[i].word << "\n";
}
}
반응형
'Algorithm' 카테고리의 다른 글
[백트래킹 단계] 백준 15650번 N과 M (2) (0) | 2020.09.25 |
---|---|
[백트래킹 단계] 백준 15649번 N과 M (1) (0) | 2020.09.25 |
[정렬 단계] 백준 11651번 좌표 정렬하기 2 (0) | 2020.09.24 |
[정렬 단계] 백준 2108번 통계학 (0) | 2020.09.24 |
[정렬 단계] 백준 10989번 수 정렬하기3 (0) | 2020.09.24 |