cpp) 백준 1181: 단어 정렬
본문 바로가기
코딩 테스트/백준 (C++, Python)

cpp) 백준 1181: 단어 정렬

by NEWSUN* 2023. 6. 13.

Problem

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

 

1181번: 단어 정렬

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

www.acmicpc.net

알파벳 소문자로 이루어진 N개의 단어가 들어오면 다음과 같은 조건에 따라 정렬하시오. 1) 길이가 짧은 것부터 2) 길이가 같으면 사전 순으로. 단, 중복된 단어는 하나만 남기고 제거해야 한다.

 

 

Solution

#include<iostream>
#include<algorithm>
#include<string>

using namespace std;

bool check(string a, string b){
    int i=0;
    // 두 문자열의 길이가 똑같은 경우
    if (a.length()==b.length()){
        for (int i=0;i<a.length();i++){
            if (a[i]!=b[i])
                return a[i]<b[i];
        }
    }
    // 두 문자열의 길이가 다른 경우, 짧은 것부터 먼저!
    return a.length()<b.length();
}


int main(){
    ios::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);

    int n;
    cin >> n;
    string arr[n];

    for(int i=0;i<n;i++)
        cin >> arr[i];
    
    sort(arr, arr+n, check);

    cout << arr[0] << '\n';
    for(int i=1;i<n;i++){
        if(arr[i]==arr[i-1])
            continue; // 중복방지
        cout << arr[i] << '\n';
    }

   return 0;
}

 

 

Reference

https://cryptosalamander.tistory.com/51

 

[백준 / BOJ] - 1181번 단어 정렬 C++ 풀이

백준 - 단계별로 풀어보기 [1181] https://www.acmicpc.net/problem/1181 문제 풀이 string 벡터를 선언하고, string의 비교 조건을 str.length() 순으로, 만약 같을 경우엔 사전순으로 비교하게끔 하는 compare 함수를

cryptosalamander.tistory.com