본문 바로가기
프로그래머스

숫자 게임 C++

by paysmile 2022. 3. 18.

https://programmers.co.kr/learn/courses/30/lessons/12987

 

코딩테스트 연습 - 숫자 게임

xx 회사의 2xN명의 사원들은 N명씩 두 팀으로 나눠 숫자 게임을 하려고 합니다. 두 개의 팀을 각각 A팀과 B팀이라고 하겠습니다. 숫자 게임의 규칙은 다음과 같습니다. 먼저 모든 사원이 무작위로

programmers.co.kr

 

#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int solution(vector<int> A, vector<int> B) {
    int answer = 0;
    
    sort(A.begin(), A.end());
    sort(B.begin(), B.end());
    
    int index = 0; 
    for(int i = 0; i < B.size(); ++i){
        if (B[i] > A[index]){
            answer++;
            index++;
        }
    }
            
    return answer;
}

'프로그래머스' 카테고리의 다른 글

가장 긴 팰린드롬 C++  (0) 2022.03.19
가장 긴 팰린드롬 C++  (0) 2022.03.18
카드 짝 맞추기 C++  (0) 2022.03.06
괄호 회전하기 C++  (0) 2022.03.02
2개 이하로 다른 비트 C++  (0) 2022.03.02