250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- string
- BFS
- List
- 리소스모니터링
- 스프링부트
- 큐
- deque
- union_find
- JPA
- scanner
- sql
- math
- date
- CSS
- 스택
- 힙덤프
- NIO
- GC로그수집
- javascript
- priority_queue
- Union-find
- Java
- dfs
- Properties
- Calendar
- map
- html
- set
- spring boot
- alter
Archives
- Today
- Total
매일 조금씩
백준 11656번: 접미사 배열 본문
728x90
반응형
substr()를 사용하여 잘라서 vector에 저장후 sort로 사전순 정렬 하는 문제
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string s;
vector<string> v;
int main(void) {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> s;
v.resize(s.size());
for (int i = 0; i < s.size(); i++) {
v[i] = s.substr(i, s.size());
}
sort(v.begin(), v.end());
for (int i = 0; i < v.size(); i++) {
cout << v[i] << endl;
}
return 0;
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
백준 5555번: 반지 (0) | 2020.02.16 |
---|---|
백준 5598번: 카이사르 암호 (0) | 2020.02.12 |
백준 2897번: 몬스터 트럭 (0) | 2020.02.09 |
백준 10769번: 행복한지 슬픈지 (0) | 2020.02.08 |
백준 1919번: 애너그램 만들기 (0) | 2020.01.19 |