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

 

이번에 볼 문제는 백준 25859번 문제인 Sort by Frequency이다.
문제는 아래 링크를 확인하자.

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

 

25859번: Sort by Frequency

The input consists of a single string, appearing on a line by itself, starting in column 1 and not exceeding column 70. The input will contain only lowercase letters (at least one letter).

www.acmicpc.net

각 문자마다 등장횟수를 기준으로 내림차순으로, 등장횟수가 같다면 알파벳순으로 정렬해 각 문자들을 그 개수만큼씩 순서대로 출력하는 것으로 문제를 해결할 수 있다.

 

등장횟수 기준으로 내림차순정렬을 하는 것은 (-등장횟수)를 기준으로 오름차순정렬을 하는 것과 같으므로 아래와 같은 구현이 가능하다.

 

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

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

vector<pair<int, char>> vec;

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

	string s; cin >> s;
	for (char c = 'a'; c <= 'z'; c++) {
		int cnt = 0;
		for (auto& l : s) {
			if (l == c) cnt++;
		}
		vec.emplace_back(make_pair(-cnt, c));
	}

	sort(vec.begin(), vec.end());
	for (auto& p : vec) {
		while (p.first) {
			cout << p.second;
			p.first++;
		}
	}
}
728x90

+ Recent posts