반응형

문제 출처 :


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



알고리즘 분석 :


문제 해결에 필요한 사항

1. 정렬 방법

2. 구현


sort의 정렬 조건을 만들어 주는 문제이다.


        if (sumA == sumB)
        {
            if (a.compare(b) < 0)
                return true;
 
            return false;
        }


이 코드는 사전순으로 정렬하는 코드이기에 여러 문제에서 자주 쓰일 수 있으니 기억해두면 좋을 것 같다.


마지막 출력 부분은 printf로 쓰기 위해서는 .c_str()을 쓰고


cout으로 쓰고 싶다면 그냥 cout << arr[i] << endl;로 표현하면 된다.


이 문제를 해결했다면 다음 문제를 한번 풀어보자.


[10825번] 국영수 :: http://www.crocus.co.kr/674






소스 코드 : 

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
52
53
54
55
56
57
58
59
60
61
#include <iostream>
#include <cstdio>
#include <string.h>
#include <algorithm>
#include <string>
 
using namespace std;
 
string arr[1001];
 
bool comp(const string &a, const string &b)
{
    if (a.size() != b.size())
        return a.size() < b.size();
 
    else if (a.size() == b.size())
    {
        int sumA = 0, sumB = 0;
        int lenA, lenB;
 
        lenA = a.size();
        lenB = b.size();
 
        for (int i = 0; i < lenA; i++)
            if ('1' <= a[i] && a[i] <= '9')
                sumA += (int)(a[i] - '0');
 
        for (int i = 0; i < lenB; i++)
            if ('1' <= b[i] && b[i] <= '9')
                sumB += (int)(b[i] - '0');
 
        if (sumA == sumB)
        {
            if (a.compare(b) < 0)
                return true;
 
            return false;
        }
        else
            return sumA < sumB;
    }
 
}
int main()
{
    int n;
    scanf("%d"&n);
 
    for (int i = 0; i < n; i++)
        cin >> arr[i];
 
    sort(arr, arr + n, comp);
 
    for (int i = 0; i < n; i++)
        printf("%s\n", arr[i].c_str());
 
    return 0;
}
 
//                                                       This source code Copyright belongs to Crocus
//                                                        If you want to see more? click here >>
Crocus


반응형

'Applied > 알고리즘 문제풀이' 카테고리의 다른 글

[11014번] 컨닝 2  (0) 2017.04.24
[1014번] 컨닝  (2) 2017.04.24
[5651번] 완전 중요한 간선  (0) 2017.04.24
[1074번] Z  (0) 2017.04.22
[1780번] 종이의 개수  (0) 2017.04.22