본문 바로가기
알고리즘/프로그래머스

[프로그래머스] Lv. 1 로또의 최고 순위와 최저 순위 c++

by 오오오니 2023. 1. 3.

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;
}