반응형

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

 

16719번: ZOAC

2018년 12월, 처음 시작하게 된 ZOAC의 오프닝을 맡은 성우는 누구보다 화려하게 ZOAC를 알리려 한다. 앞 글자부터 하나씩 보여주는 방식은 너무 식상하다고 생각한 성우는 문자열을 보여주는 새로

www.acmicpc.net

 

각 문자열 길이마다 하나씩 문자를 추가하며, 사전순으로 제일 빠른 문자열을 출력하여 추가한 인덱스는 방문 표시를 해주었습니다.

 

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

string s;
bool chk[100] = { false };

int main() {
	ios::sync_with_stdio(false);
	cin.tie(NULL); cout.tie(NULL);

	cin >> s;

	for (int i = 0; i < s.size(); i++) {
		string res = "z";
		int idx = 0;
		for (int j = 0; j < s.size(); j++) {
			if (chk[j]) continue;
			string t = "";
			chk[j] = true;
			for (int k = 0; k < s.size(); k++) {
				if (chk[k]) t.push_back(s[k]);
			}
			chk[j] = false;
			if (res > t) {
				res = t;
				idx = j;
			}
		}
		chk[idx] = true;
		cout << res << "\n";
	}
}
반응형

'Algorithm' 카테고리의 다른 글

백준 18513 : 샘터  (0) 2021.11.18
백준 16202 : MST 게임  (0) 2021.11.18
백준 1043 : 거짓말  (0) 2021.11.18
백준 1009 : 분산처리  (0) 2021.11.18
백준 13511 : 트리와 쿼리 2  (0) 2021.11.18

+ Recent posts