숫자 게임
https://programmers.co.kr/learn/courses/30/lessons/12987
패스해도 됨.
#include <string>
#include <vector>
#include <map>
#include <iostream>
#include <algorithm>
using namespace std;
//
int solution(vector<int> A, vector<int> B) {
int answer = 0;
sort(A.begin(), A.end(), [](int a, int b) {
return a < b;
});
sort(B.begin(), B.end(), [](int a, int b) {
return a < b;
});
int StartB(0);
for (int i = 0; i < A.size(); i++)//1.3.5.7
{
for (int j = StartB; j < B.size(); j++)//2.2.6.8
{
if (B[j] > A[i])
{
answer++;
StartB=j+1;
break;
}
}
}
return answer;
}
int main()
{
vector<int> A = { 5,1,3,7 };
vector<int>B = { 2,2,6,8 };
int iResult= solution(A, B);
}
비교대상 정렬 오름차순 한 뒤,
A에서 만족하는비교대상 없으면
B꺼 ++해가는 방식이다.
Author And Source
이 문제에 관하여(숫자 게임), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@imalive77/숫자-게임저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)