Algorithm/String
(C++) - BOJ(1427번) : 소트인사이드
하눤석
2022. 1. 26. 10:14
728x90
https://www.acmicpc.net/problem/1427
- 해설 :
숫자가 주어졌을 때 각 자릿수를 내림차순으로 정렬한 결과를 출력하는 문제이다.
- 풀이 :
주어진 숫자를 문자열로 치환하여 정렬하면 내림차순으로 정렬이 가능하다.
- 소스코드 :
1
2
3
4
5
6
7
8
9
|
#include <iostream>
#include <algorithm>
using namespace std;
int main(void) {
string str;
cin >> str;
sort(str.begin(), str.end(), greater<char>());
cout << str;
}
|
cs |
320x100