기술 블로그

1181번 단어 정렬 본문

알고리즘 문제/BOJ

1181번 단어 정렬

parkit 2019. 3. 22. 15:15
728x90
반응형

https://www.acmicpc.net/problem/1181



C++의 map을 이용하였다.


자동으로 중복 제거 및 정렬을 해주기 때문이다.



위에서 말한 '중복 제거'라는 것은


map은 Key의 중복을 불허하기 때문에


Key값을 string으로 해주었다.


즉, string으로 해주면 다시 추가될 일이 없기 때문이다.



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <iostream>
#include <queue>
#include <stack>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
#include <map>
#include <set>
#include <tuple>
 
#pragma warning(disable:4996)  
#pragma comment(linker, "/STACK:336777216")
 
using namespace std;
 
int N = 0;
 
map<stringbool> m[55]; // map<문자열, 사용 안 함> m[문자열 길이];
 
int main(void)
{
    string s;
 
    scanf("%d"&N);
 
    for (int i = 0; i < N; i++)
    {
        cin >> s;
 
        m[s.length()].insert({ s, false });
    }
 
    for (int i = 1; i <= 50; i++)
    {
        if (m[i].empty()) continue;
 
        auto itr = m[i].begin();
 
        while (itr != m[i].end())
        {
            cout << itr->first << '\n';
 
            ++itr;
        }
    }
    
    return 0;
}
cs









728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

16985번 Maaaaaaaaaze  (0) 2019.03.25
13414번 수강신청  (0) 2019.03.23
16931번 겉넓이 구하기  (0) 2019.03.21
16930번 달리기  (0) 2019.03.21
16929번 Two Dots  (0) 2019.03.21