[SWEA] 1256. K번째 접미어 (C++)
728x90
반응형
뒤에서부터 한 문자씩 끊어서 vector에 저장한 다음 사전순 정렬했다
#define _CRT_SECURE_NO_DEPRECATE
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int t,k;
int main(void) {
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> t;
string s;
for (int tc = 1; tc <= t; tc++) {
cin >> k;
cin >> s;
vector<string> list;
string tmp = "";
for (int i = s.length()-1; i>=0; i--) {
tmp = s[i]+tmp;
list.push_back(tmp);
}
sort(list.begin(), list.end());
cout << "#" << tc << " " << list[k-1] << "\n";
}
return 0;
}
728x90
반응형
'swexpert' 카테고리의 다른 글
[swexpert] 1248. 공통조상 (C++, 트리, BFS, DFS) (0) | 2021.10.12 |
---|---|
[SWEA] 2948. 문자열 교집합 (C++, 해시) (0) | 2021.10.06 |
[swexpert] 1230. 암호문3 (C++, 연결리스트) (0) | 2021.10.05 |
[SWEXPERT] 1232. 사칙연산 (이진트리, C++, D4) (0) | 2021.10.01 |
[SWEA] 1209. SUM2 (C++, D3) (0) | 2021.10.01 |
TAGS.