※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 25773번 문제인 Number Maximization이다.
문제는 아래 링크를 확인하자.

https://www.acmicpc.net/problem/25773 

 

25773번: Number Maximization

There is only one input line; it contains an integer between 0 and 999,999 (inclusive). Assume that the input number will not have leading 0’s. Note, however, that the input can be just the value 0.

www.acmicpc.net

주어지는 문자열을 구성하는 각 자릿수를 재구성해 만들 수 있는 가장 큰 수를 찾는 문제이다.

 

가장 크기가 큰 자릿수부터 순서대로 재배열하는 것으로 문제의 답을 얻을 수 있다. 이는 정렬을 이용해 간단히 구현할 수 있다.

 

아래는 제출한 소스코드이다.

#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	string s; cin >> s;
	sort(s.begin(), s.end());
	reverse(s.begin(), s.end());

	cout << s;
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 24957 // C++] Loop of Chocolate  (0) 2022.11.13
[BOJ 7581 // C++] Cuboids  (0) 2022.11.13
[BOJ 7582 // C++] On the Bus  (0) 2022.11.13
[BOJ 3512 // C++] Flat  (0) 2022.11.12
[BOJ 16099 // C++] Larger Sport Facility  (1) 2022.11.12

+ Recent posts