반응형
https://programmers.co.kr/learn/courses/30/lessons/42746
코딩테스트 연습 - 가장 큰 수
0 또는 양의 정수가 주어졌을 때, 정수를 이어 붙여 만들 수 있는 가장 큰 수를 알아내 주세요. 예를 들어, 주어진 정수가 [6, 10, 2]라면 [6102, 6210, 1062, 1026, 2610, 2106]를 만들 수 있고, 이중 가장 큰
programmers.co.kr
두 숫자를 앞 또는 뒤로 합쳤을 때, 더 큰 숫자가 나오는 상황으로 정렬시켜주었습니다.
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
bool comp(string& a, string& b) {
return a + b > b + a;
}
string solution(vector<int> numbers) {
string answer = "";
vector<string> convert;
for(int i=0; i<numbers.size(); i++) convert.push_back(to_string(numbers[i]));
sort(convert.begin(), convert.end(), comp);
for(int i=0; i<convert.size(); i++) answer += convert[i];
return answer[0] == '0' ? "0" : answer;
}
반응형
'Algorithm' 카테고리의 다른 글
프로그래머스 : 이진 변환 반복하기 (0) | 2021.11.15 |
---|---|
프로그래머스 : 숫자의 표현 (0) | 2021.11.15 |
프로그래머스 : 게임 맵 최단거리 (0) | 2021.11.15 |
프로그래머스 : 땅따먹기 (0) | 2021.11.15 |
프로그래머스 : 다음 큰 숫자 (0) | 2021.11.15 |