728x90
https://school.programmers.co.kr/learn/courses/30/lessons/176963
소스코드
#include <string>
#include <vector>
#include <map>
using namespace std;
vector<int> solution(vector<string> name, vector<int> yearning, vector<vector<string>> photo) {
vector<int> answer;
map<string, int> m;
for (int i = 0; i < name.size(); i++)
m.insert({ name[i], yearning[i] });
for (int i = 0; i < photo.size(); i++)
{
int sum = 0;
for (int j = 0; j < photo[i].size(); j++)
{
if (m.find(photo[i][j]) != m.end())
{
sum += m[photo[i][j]];
}
}
answer.push_back(sum);
}
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 대충 만든 자판 C++ (0) | 2023.08.07 |
---|---|
[프로그래머스]Lv.1 덧칠하기 C++ (0) | 2023.08.07 |
[프로그래머스]Lv.1 달리기 경주 C++ (map) (0) | 2023.08.07 |
[프로그래머스]Lv.0 문자열 바꿔서 찾기 C++ (0) | 2023.08.07 |
[프로그래머스]Lv.0 x 간단한 식 계산하기 C++ (stringstream, 비트연산) (0) | 2023.08.07 |