본문 바로가기

Algorithm/Programmers

[Programmers] 성격 유형 검사하기 (C++)

728x90
반응형

https://school.programmers.co.kr/learn/courses/30/lessons/118666

 

프로그래머스

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

programmers.co.kr

 

#include <string>
#include <vector>
#include <map>

using namespace std;

string solution(vector<string> survey, vector<int> choices) {
    string answer = "";
    
    map<char, int> m;
    for(int i = 0; i < survey.size(); i++){
        if(choices[i] == 1) m[survey[i][0]] += 3;
        else if(choices[i] == 2) m[survey[i][0]] += 2;
        else if(choices[i] == 3) m[survey[i][0]] += 1;
        else if(choices[i] == 5) m[survey[i][1]] += 1;
        else if(choices[i] == 6) m[survey[i][1]] += 2;
        else if(choices[i] == 7) m[survey[i][1]] += 3;
    }
    
    if(m['R'] >= m['T']) answer += 'R';
    else answer += 'T';
    if(m['C'] >= m['F']) answer += 'C';
    else answer += 'F';
    if(m['J'] >= m['M']) answer += 'J';
    else answer += 'M';
    if(m['A'] >= m['N']) answer += 'A';
    else answer += 'N';
    return answer;
}
728x90
반응형