https://school.programmers.co.kr/learn/courses/30/lessons/77484
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
풀이
lottos의 0의 개수와(zero) win_nums와 일치하는 숫자의 개수(same)를 세어준다.
일치할 수 있는 최대 개수는 zero+same이고 최소한 same개는 일치한다.
일치하는 개수를 등수로 변환해 준다.
6등 이하는 없기 때문에 일치하는 것이 없거나(min==7) , 0도 없고 일치하는 것도 없는 경우에(max==7) 등수를 예외처리 해주었다.
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> lottos, vector<int> win_nums) {
vector<int> answer;
int zero=0;
int same=0;
for(int i=0;i<6;i++)
{
if(!lottos[i])
{
zero++;
continue;
}
for(int j=0;j<6;j++)
{
if(lottos[i]==win_nums[j])
{
same++;
continue;
}
}
}
int max=7-same-zero;
int min=7-same;
if(min==7)
min=6;
if(max==7)
max=6;
answer.push_back(max);
answer.push_back(min);
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] k진수에서 소수 개수 구하기 c++ (0) | 2023.01.14 |
---|---|
[프로그래머스] [1차] 캐시 c++ (0) | 2023.01.06 |
[프로그래머스] Lv2 튜플 (0) | 2023.01.01 |
[프로그래머스] 디펜스 게임 c++ (0) | 2023.01.01 |
[프로그래머스] 두 큐 합 같게 만들기 c++ (0) | 2022.12.08 |