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
- 누적 합
- 시뮬레이션
- 백트래킹
- 다익스트라
- 스택
- 우선순위 큐
- 백준
- 트리
- BFS
- VR
- 문자열
- 정렬
- 수학
- 그래프
- Unreal Engine 5
- c++
- 브루트포스
- 다이나믹 프로그래밍
- DFS
- 구현
- 유니티
- 투 포인터
- Team Fortress 2
- ue5
- 재귀
- XR Interaction Toolkit
- 그리디 알고리즘
- 자료구조
- 유니온 파인드
- 알고리즘
Archives
- Today
- Total
1일1알
백준 6443번 애너그램 C++ 본문
https://www.acmicpc.net/problem/6443
전체 문자열에 대해 백트래킹을 시도하면 시간초과가 나서 알파벳 개수에 대해 백트래킹으로 하니까 중복, 정렬 문제도 자연스럽게 해결이 되도록 풀렸다.
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, len;
string str;
vector<int> visited;
string ans;
void BT() {
if (ans.length() == len) {
cout << ans << "\n";
return;
}
for (int i = 0; i < 26; i++) {
if (visited[i] == 0) continue;
visited[i]--;
ans += 'a' + i;
BT();
visited[i]++;
ans.pop_back();
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
while (n--) {
cin >> str;
len = str.length();
visited = vector<int>(26, 0);
ans = "";
for (int i = 0; i < len; i++) {
visited[str[i] - 'a']++;
}
BT();
}
}
'알고리즘' 카테고리의 다른 글
백준 23757번 아이들과 선물 상자 C++ (0) | 2022.12.20 |
---|---|
백준 11909번 배열 탈출 C++ (0) | 2022.12.18 |
백준 24040번 예쁜 케이크 C++ (0) | 2022.12.16 |
백준 17086번 아기 상어 2 C++ (0) | 2022.12.15 |
백준 12789번 도키도키 간식드리미 C++ (0) | 2022.12.14 |