컴퓨터기본/문제풀이

[백준] 1181번: 단어 정렬

차가운오미자 2021. 9. 11. 17:22

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

 

1181번: 단어 정렬

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

www.acmicpc.net

문제 이해

이것도 그냥 compare함수를 잘 설계하면 되는 문제이다.

 

작성 코드

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

using namespace std;

int N;
vector<string> v;

bool compare(string a, string b){

    if(a.length() < b.length()) return true;
    else if(a.length() == b.length()){
        if(a<b) return true;
        else return false;
    }
    else return false;
}

int main(void){
    cin >> N;
    for(int i = 0; i<N; i++){
        string tmp;
        cin >> tmp;
        v.push_back(tmp);
    }

    sort(v.begin(), v.end(), compare);

    for(int i = 0; i<N; i++){
        if(i == N-1) cout << v[i] << "\n";
        else{
            if(v[i] != v[i+1]) cout << v[i] << "\n";
        }
    }

    return 0;
}