본문 바로가기

Algorithm/Sorting

(C++) - 백준(BOJ) 1431번 : 시리얼 번호 답

반응형

www.acmicpc.net/problem/1431

 

1431번: 시리얼 번호

첫째 줄에 기타의 개수 N이 주어진다. N은 1,000보다 작거나 같다. 둘째 줄부터 N개의 줄에 시리얼 번호가 하나씩 주어진다. 시리얼 번호의 길이는 최대 50이고, 알파벳 대문자 또는 숫자로만 이루

www.acmicpc.net

정렬 문제였습니다.

 

풀이방법

 stl의 sort함수는 정렬기준을 커스터마이징한 함수를 넣어 원하는 대로 정렬할 수 있습니다.

 

Code

#include <bits/stdc++.h>
using namespace std;
int n;
vector <string> serial;
bool cmp(string a, string b){
    if(a.size() == b.size()){
        int sumA = 0,sumB = 0;
        for(int i = 0; i < a.size(); i++){
            if('1'<=a[i]&&a[i]<='9') sumA += a[i] - '0';
            if('1'<=b[i]&&b[i]<='9') sumB += b[i] - '0';
        }
        if(sumA == sumB) return a < b;
        return sumA < sumB;
    }
    return a.size() < b.size();
}
int main(){
    cin >> n;
    while(n--){
        string s;
        cin >> s;
        serial.push_back(s);
    }
    sort(serial.begin(),serial.end(),cmp);
    for(auto s:serial) cout << s << '\n';
}