정렬 함수 3번째 인자 _Pred 람다 함수로 깔끔하게 해결
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
using namespace std;
#define SIZE 1000
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
string arr[SIZE];
int n; cin >> n;
cin.ignore();
int flag = 0;
for (int i = 0; i < n; i++)
{
cin >> arr[i];
if (arr[i] != "0")
flag = true;
}
if (!flag)
cout << 0;
else
{
for (int i = 0; i < n; i++)
{
sort(arr, arr + n, [](string str1, string str2)
{
if (str1 == str2)
return false;
return str1 + str2 > str2 + str1;
});
cout << arr[i];
}
}
return 0;
}
'코딩테스트 > 백준' 카테고리의 다른 글
[골5] 7576 - 토마토 (0) | 2022.07.04 |
---|---|
[골3] 2812 - 크게 만들기 (0) | 2022.07.01 |
[실1] 2583 - 영역 구하기 bfs (0) | 2022.07.01 |
[실1] 14888 - 연산자 끼워넣기 (0) | 2022.06.25 |
[실1] 11403 - 경로 찾기 (0) | 2022.06.21 |