알고리즘/프로그래머스
Programers 최고의 집합 / C++
https://school.programmers.co.kr/learn/courses/30/lessons/12941 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 아이디어 두배열의 곱이 최소가 되려면 오름차순 정렬 배열과 내림차순 배열 정렬을 곱하면 됩니다. #include #include #include using namespace std; bool cmp(int a, int b){ return a>b; } int solution(vector A, vector B) { int answer = 0; sort(A.begin(),A.end()); sort(B...
2022. 12. 4.