[백준] 1427. 소트인사이트 (C++)
Algorithm2022. 1. 25. 10:04
반응형
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
bool cmp(int a, int b)
{
if (a > b) return true;
else return false;
}
int main()
{
string s;
// int 배열 생성
vector<int> a;
//초기 숫자 입력을 string 형태로
cin >> s;
// string 인덱스 마다 -> int 형태로 변환 후
// int 배열에 추가
for(int i=0; i<s.size(); i++)
a.push_back(s[i]-48);
// int 배열 정렬
sort(a.begin(), a.end(),cmp);
for(int i=0; i<a.size(); i++)
cout << a[i];
return 0;
}
반응형
'Algorithm' 카테고리의 다른 글
leetcode 423. Reconstruct Original Digits from English (78) | 2022.01.27 |
---|---|
[백준] 11656. 접미사 배열 (C++) (12) | 2022.01.25 |
[백준] 숫자놀이 C++ (19) | 2022.01.25 |
[백준] 10814. 나이순 정렬 (C++) (5) | 2022.01.24 |
[백준] 1431. 시리얼 번호 (C++) (4) | 2022.01.23 |
댓글()