본문 바로가기
프로그래머스

[프로그래머스] 2019 카카오 개발자 겨울 인턴십 - 튜플, C++

by 황인태(intaehwang) 2020. 5. 1.
반응형

https://programmers.co.kr/learn/courses/30/lessons/64065

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

본 문제는 문자열 처리를 하는 문제다. 문제의 자세한 설명은 링크를 참고하길 바란다.

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
#include <string>
#include <vector>
#include <cstdio>
 
using namespace std;
 
bool chk[100001];
 
vector<int> solution(string s) {
    vector<int> answer;
    vector<int> v[100001];
    int index = 0, tmp = 0;
    for (int i = 1; i < s.size()-1; i++) {
        if (s[i]-'0' >= 0 && s[i]-'0' <= 9) {
            tmp *= 10;
            tmp += s[i]-'0';
        }
        else if (s[i] == ',' && tmp != 0) {
            v[index].push_back(tmp);
            tmp = 0;
        }
        else if (s[i] == '}') {
            v[index].push_back(tmp);
            index += 1;
            tmp = 0;
        }
    }
    int len = 1;
    while (1) {
        bool flag = false;
        for (int i = 0; i < index; i++) {
            if (v[i].size() == len) {
                flag = true;
                for (int j = 0; j < len; j++) {
                    if (chk[v[i][j]]) continue;
                    chk[v[i][j]] = true;
                    answer.push_back(v[i][j]);
                }
                len += 1;
                break;
            }
        }
        if (!flag) break;
    }
    return answer;
}
cs
반응형
Buy me a coffeeBuy me a coffee

댓글