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 | 29 | 30 |
Tags
- 시뮬레이션
- 백트래킹
- 트리
- Unreal Engine 5
- 브루트포스
- 유니온 파인드
- 자료구조
- 수학
- VR
- 다이나믹 프로그래밍
- 투 포인터
- 재귀
- 그리디 알고리즘
- 그래프
- 누적 합
- XR Interaction Toolkit
- 스택
- c++
- 문자열
- BFS
- DFS
- 유니티
- 구현
- 알고리즘
- ue5
- 다익스트라
- 정렬
- 백준
- 우선순위 큐
- Team Fortress 2
Archives
- Today
- Total
1일1알
백준 1251번 단어 나누기 C++ 본문
2중 for문을 통해 세 구간으로 나눈 뒤 다 비교하면서 사전순으로 제일 앞서는 단어를 찾았다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
cin >> str;
string ans = "~";
for (int i = 0; i < str.length() - 2; i++) {
for (int j = i + 1; j < str.length() - 1; j++) {
string tmp = "";
for (int k = i; k >= 0; k--) {
tmp += str[k];
}
for (int k = j; k >= i + 1; k--) {
tmp += str[k];
}
for (int k = str.length() - 1; k >= j + 1; k--) {
tmp += str[k];
}
ans = min(ans, tmp);
}
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 1283번 단축키 지정 C++ (0) | 2022.04.20 |
---|---|
백준 1270번 전쟁-땅따먹기 C++ (0) | 2022.04.19 |
백준 1244번 스위치 켜고 끄기 C++ (0) | 2022.04.17 |
백준 1235번 학생 번호 C++ (0) | 2022.04.16 |
백준 1213번 팰린드롬 만들기 C++ (0) | 2022.04.15 |