250x250
Notice
Recent Posts
Recent Comments
관리 메뉴

탁월함은 어떻게 나오는가?

[백준알고리즘] 1181번 단어 정렬 [C++] 본문

[Snow-ball]프로그래밍(컴퓨터)/Algorithm Training

[백준알고리즘] 1181번 단어 정렬 [C++]

Snow-ball 2022. 3. 8. 19:00
반응형

문제

알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.

1. 길이가 짧은 것부터

2. 길이가 같으면 사전 순으로

 

입력

첫째 줄에 단어의 개수 N이 주어진다. (1 <= N <= 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.

 

출력

조건에 따라 정렬하여 단어들을 출력한다. 단, 같은 단어가 여러 번 입력된 경우에는 한 번씩만 출력한다.

 

 

 

 

 

 

코드 

C++ : 

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
#include <iostream>
#include <string>
#include<algorithm>
using namespace std;
 
bool compare(string a, string b) {
    if (a.length() != b.length()) {
        return a.length() < b.length();
    }
    
    else {
        return a < b;
    }
}
 
int main(void) {
    
    int i = 0, word, N;
    string array[20001];
    
    cin >> N;
    for (i = 0; i < N; i++) {
        cin >> array[i];
    }
    
    sort(array, array + N, compare);
    
    for (i = 0; i < N; i++) {
        
        if (array[i] == array[i + 1]) {
            continue;
        }
        
        cout << array[i] << "\n";
    }
    
    return 0;
}




cs

 

 

깃 허브 :

https://github.com/akdl911215/algorithmTraining/blob/master/D-C/sort/backjoon-1181-word-sort.cpp

 

GitHub - akdl911215/algorithmTraining

Contribute to akdl911215/algorithmTraining development by creating an account on GitHub.

github.com

 

 

 

 

 

 

 

 

 

베타존 : 네이버쇼핑 스마트스토어

나를 꾸미다 - 인테리어소품 베타존

smartstore.naver.com

 

반응형
Comments