Notice
Recent Posts
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
관리 메뉴

이우의 개발일지

[백준/C++] 1181번 단어 정렬 - sort (1) 본문

Coding

[백준/C++] 1181번 단어 정렬 - sort (1)

공대이우 2024. 5. 23. 15:15

백준 1181번 단어 정렬 

시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB 187690 78845 59128 40.410%

문제

알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램을 작성하시오.

  1. 길이가 짧은 것부터
  2. 길이가 같으면 사전 순으로

단, 중복된 단어는 하나만 남기고 제거해야 한다.

입력

첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개의 줄에 걸쳐 알파벳 소문자로 이루어진 단어가 한 줄에 하나씩 주어진다. 주어지는 문자열의 길이는 50을 넘지 않는다.

출력

조건에 따라 정렬하여 단어들을 출력한다.

 

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

 

정렬 조건이 2개 였다. 

1번째는 글자 갯수가 짧은 순으로 

2번째는 글자 갯수가 같다면, 알파벳 순으로 

 

sort의 사용자 정의 함수를 이용해서 간단히 풀 수 있긴했다.. (3중 반복문 써도 풀리지만, 시간초과가 뜬다...)

sort(vec.begin(), vec.end(), [](const string & a, const string & b) {

	if (a.size() != b.size())
		return a.size() < b.size();
	return a < b;
});

 

sort에 대해 더 자세히 알고싶다면, 밑에 글 참고하면 된다. 

 

 

[STL] sort 정렬 함수 사용 방법/ 사용자 정의 비교 함수 사용/오름차순 내림차순 코드

Sort 정렬 함수 오름차순정렬함수 sort는 주어진 숫자들을 오름차순으로 정렬해주는 함수입니다.코딩테스트 문제를 풀 때 유용하게 쓰이는 함수이죠. 시간 복잡도는 O(nlogn)입니다.  sort 기본 사

everything.pipelineleewoo.com

 

단어정렬 맞은 코드 

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
using namespace std;
int main() {
	cin.tie(0);
	ios::sync_with_stdio(0);
	int n;
	cin >> n;
	//vector<pair<string, int>> vec;
	vector<string> vec;
	for (int i = 0; i < n; i++) {
		string st;
		cin >> st;
		int flag = 0;
		if (i == 0) vec.push_back(st);
		for (int j = 0; j < vec.size(); j++) {
			if (st == vec[j]) {
				flag = 0;
				break;
				
			}
			else flag = 1;
		}
		if(flag == 1) vec.push_back(st);
	}
	int size = vec.size();
	
	sort(vec.begin(), vec.end(), [](const string & a, const string & b) {

		if (a.size() != b.size())
			return a.size() < b.size();
		return a < b;
	});
	for (int i = 0; i < size; i++) {
		cout << vec[i] << '\n';

	}

}

단어 정렬 시간 초과 코드 

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
using namespace std;
int main() {
	cin.tie(0);
	ios::sync_with_stdio(0);
	int n;
	cin >> n;
	//vector<pair<string, int>> vec;
	vector<string> vec;
	for (int i = 0; i < n; i++) {
		string st;
		cin >> st;
		int flag = 0;
		if (i == 0) vec.push_back(st);
		for (int j = 0; j < vec.size(); j++) {
			if (st == vec[j]) {
				flag = 0;
				break;
				
			}
			else flag = 1;
		}
		if(flag == 1) vec.push_back(st);
	}
	int size = vec.size();
	//cout << vec.size() << '\n';
	// 길이가 짧은 것부터 
	for (int i = 0; i < size-1; i++) {
		for (int j = i + 1; j < size; j++) {
			if (vec[i].size() > vec[j].size()) {
				swap(vec[i], vec[j]);
			}
			else if (vec[i].size() == vec[j].size()) {
				int n = 0;
				while (1) {
					char ch1, ch2;
					ch1 = vec[i][n];
					ch2 = vec[j][n];
					if (ch1 < ch2) break;
					else if (ch1 > ch2) {
						//cout << "vec[i] : " << vec[i] << "   vec[j] : " << vec[j] << '\n';
						swap(vec[i], vec[j]);
						break;
					}
					n++;
					
				}
			}
		}
	}

	for (int i = 0; i < size; i++) {
		cout << vec[i] << '\n';
		//cout << vec.size() << '\n';
	}
	/*char ch1, ch2;
	ch1 = 'm';
	ch2 = 'w';

	if (ch1 > ch2) cout << 1;
	else if (ch1 < ch2) cout << 0;*/
}

 

반응형