Recent Posts
Notice
No Rules Rules
로또의 최고 순위와 최저 순위 (feat. 프로그래머스, 77484번) 본문
728x90
반응형
로또의 최고 순위와 최저 순위
https://programmers.co.kr/learn/courses/30/lessons/77484
// woohyeon.kim
#include <string>
#include <vector>
#include <algorithm>
#include <map>
#include <iostream>
using namespace std;
vector<int> solution(vector<int> lottos, vector<int> win_nums) {
const auto zero_count = count(lottos.begin(), lottos.end(), 0);
auto right_count = 0;
for(const auto& lotto : lottos)
{
if(find(win_nums.begin(), win_nums.end(), lotto) != win_nums.end())
{
++right_count;
}
}
// 맞춘개수 등수
map<int, int> match_win;
match_win[0] = 6;
match_win[1] = 6;
match_win[2] = 5;
match_win[3] = 4;
match_win[4] = 3;
match_win[5] = 2;
match_win[6] = 1;
vector<int> answer;
answer.push_back(match_win[right_count + zero_count]);
answer.push_back(match_win[right_count]);
return answer;
}
// *&)*@*
반응형
ps. 인생 최대의 난제. 왜 내 코테는 어렵고 남 코테는 쉬울까.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
이친수 (feat. 백준, 2193번) (0) | 2022.07.20 |
---|---|
오픈채팅방 (feat. 프로그래머스, 42888번) (0) | 2022.07.20 |
문자열 압축 (feat. 프로그래머스, 60057번) (0) | 2022.07.20 |
신규 아이디 추천 (feat. 프로그래머스, 72410번) (0) | 2022.07.20 |
신고 결과 받기 (feat. 프로그래머스, 92334번) (0) | 2022.07.20 |
Comments