기술 블로그

16890번 창업 본문

알고리즘 문제/BOJ

16890번 창업

parkit 2019. 1. 17. 23:06
728x90
반응형

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



어려웠다.


다시 한 번 풀어볼 문제이다.


나는 계속 오름차순, 내림차순 정렬을 하여


앞에서부터 순서대로 인덱스를 통해 각각 문자를 비교하여 출력하게 하였는데,


다른 사람의 코드과 도움을 받고 보니, 출력을 즉시하면 안 되었다.


위처럼 구현하면, 따져야할 경우의 수가 너무 많다.






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
62
#include <iostream>
#include <queue>
#include <stack>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
#include <map>
 
using namespace std;
 
char result[300010];
 
bool cmp(char a, char b)
{
    return a > b; // 내림차순
}
 
int main(void)
{
    string koo, cube;
 
    cin >> koo;
    sort(koo.begin(), koo.end());
 
    cin >> cube;
    sort(cube.begin(), cube.end(), cmp);
 
    int len = koo.length();
 
    int ks = 0, ke = (koo.length() + 1/ 2 - 1;
    int cs = 0, ce = cube.length() / 2 - 1;
 
    if (ke <= 0) ke = 0;
    if (ce <= 0) ce = 0;
 
    bool turn = true;
 
    int rs = 0, re = koo.length() - 1;
 
    for (int i = 0; i < len; i++)
    {
        if (turn)
        {
            if (koo[ks] < cube[cs]) result[rs++= koo[ks++];    
            else result[re--= koo[ke--];        
        }
        else
        {
            if (koo[ks] < cube[cs]) result[rs++= cube[cs++];
            else result[re--= cube[ce--];    
        }
 
        turn = !turn;
    }
 
    printf("%s\n", result);
 
    return 0;
}
cs


728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

1914번 하노이 탑  (0) 2019.01.20
2617번 구슬 찾기  (0) 2019.01.18
16234번 인구 이동  (0) 2019.01.14
16236번 아기 상어  (0) 2019.01.14
10798번 세로읽기  (0) 2019.01.09