-
https://school.programmers.co.kr/learn/courses/30/lessons/176963
아이디어
해쉬맵을 이용하여 추억점수가 부여되어 있는 사람들의 이름을 저장해두고 사진마다 점수가 부여되어야 하는 사람이 있는지를 확인하면 됨
#include <string> #include <vector> #include <unordered_map> using namespace std; vector<int> solution(vector<string> name, vector<int> yearning, vector<vector<string>> photo) { vector<int> answer; unordered_map<string,int> yearningMap; for(int i=0;i<name.size();i++) yearningMap[name[i]] = yearning[i]; for(auto poto : photo){ int yearningPoint =0; for(auto person : poto){ yearningPoint+=yearningMap[person]; } answer.push_back(yearningPoint); } return answer; }
'알고리즘 > 프로그래머스' 카테고리의 다른 글
Programers 과제 진행하기/ C++ (0) 2023.04.01 Programers 공원 산책/ C++ (0) 2023.03.29 Programers 광물 캐기/ C++ (0) 2023.03.29 Programers 덧칠하기/ C++ (0) 2023.03.04 Programers 바탕화면 정리/ C++ (0) 2023.03.04 댓글