Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 2단계로킹
- hackerank
- 실습
- C++
- UnrealMP
- OS
- FBX
- 1253번
- 언리얼 커스텀 플러그인
- 오손데이터읽기
- 비재귀셰그먼트
- 1967번
- oracle
- 1759번
- Security
- Linux
- 백준
- 데이터베이스 배움터
- Unreal
- objtofbx
- 셰그먼트트리
- UActor
- 민겸수
- 백준 1253번
- 의미와 무의미의 경계에서
- SQL
- 트랜잭션 관리
- 5639
- command not found
- 언리얼 플러그인
Archives
- Today
- Total
fatalite
C++ / 최소값 만들기 본문
Problem
단계 : 2단계 (어떻게 이게 전에 푼 구현 문제랑 같은 단계지..)
분류 : 정렬
Solution
#include <iostream>
#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());
for(int i : A){
answer = answer + i * B.back();
B.pop_back();
}
return answer;
}
'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글
C++ / 영어 끝말잇기 (0) | 2023.05.07 |
---|---|
C++ / 숫자의 표현 (0) | 2023.04.24 |
C++ / 이진 변환 반복하기 (0) | 2023.04.24 |
C++ / 올바른 괄호 (0) | 2023.04.22 |
C++ / 과제 진행하기 (0) | 2023.04.19 |