본문 바로가기
백준 문제 해설

백준 23235 The Fastest Sorting Algorithm In The World

by toomanysegtrees 2022. 11. 2.

오늘 산학협력 expo 참가팀 drice로 참가했는데 너무 재미있었다.

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

 

23235번: The Fastest Sorting Algorithm In The World

It is common to compare sorting algorithms based on their asymptotic speeds. Some slower algorithms like selection sort take O(N2) time to sort N items, while comparison-based sorts like merge sort can go no faster than O(N log(N)) time, under reasonable a

www.acmicpc.net

풀이

입력, 출력만 보면 풀 수 있는 문제이다. 얼마나 코드를 줄일 수 있는지 고민해 보는 것도 좋은 것 같다.

 

시간 복잡도 : $O(T)$

소요 시간 : 20초

아쉬운 점 : 요즘 알고리즘에 나태해진 것 같다.

전체적인 감상 : 여러 가지로 점검할 필요가 있는 것 같다.

/* basic setup {{{ */
#include<bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define sz(x) ((int)x.size())
#define all(x) x.begin(),x.end()
#define compress(x) sort(all(x)), x.erase(unique(all(x)), x.end())
#define fast_io ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef const int ci;
const int MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f3f;
/*}}}*/

int main(){
	fast_io;
	string s1;
	int n;
	int i = 0;
	while(cin>>n){
		if(!n) return 0;
		getline(cin, s1);
		cout<<"Case "<<++i<<": Sorting... done!\n";
	}
}

'백준 문제 해설' 카테고리의 다른 글

백준 15749 Snow Boots  (0) 2022.11.06
백준 25704 출석 이벤트  (0) 2022.11.05
백준 18409 母音を数える (Counting Vowels)  (0) 2022.11.04
백준 4589 Gnome Sequencing  (0) 2022.11.03
백준 17356 욱 제  (0) 2022.11.01
백준 5524 입실 관리  (1) 2022.10.31
백준 20648 Rectangular Pasture  (0) 2022.10.30
백준 25625 샤틀버스  (0) 2022.10.29