알고리즘 문제풀이/프로그래머스

[프로그래머스/Level 1] 성격 유형 검사하기

노력의천재 2022. 9. 24. 17:18

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

 

프로그래머스

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

programmers.co.kr

카카오 기출

 

#include <string>
#include <vector>
#include <algorithm>
#include <map>
#include <iostream>
using namespace std;

string table[4] = {"RT", "CF", "JM", "AN"};
int score[8] = {0, 3, 2, 1, 0, 1, 2, 3};
map<char, int> m;

string solution(vector<string> survey, vector<int> choices) {
    string answer = "";
    for(int i = 0; i < choices.size(); i++) {
        int st = choices[i];
        if (st < 4) {
            m[survey[i][0]] += score[st];
        } else {
            m[survey[i][1]] += score[st];
        }
    }
    
    // for(auto it : m) {
    //     cout << it.first << " " << it.second << "\n";
    // }
    
    for(int i = 0; i < 4; i++) {
        if(m[table[i][0]] >= m[table[i][1]]) {
            answer += table[i][0];
        } else {
            answer += table[i][1];
        }
    }
    
    return answer;
}