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
- 알고리즘
- Team Fortress 2
- 다익스트라
- 재귀
- c++
- 문자열
- 브루트포스
- 그래프
- DFS
- ue5
- 누적 합
- 우선순위 큐
- 자료구조
- 백준
- 트리
- 스택
- 시뮬레이션
- BFS
- 정렬
- 구현
- Unreal Engine 5
- 투 포인터
- 유니온 파인드
- XR Interaction Toolkit
- 유니티
- VR
- 수학
- 백트래킹
- 다이나믹 프로그래밍
- 그리디 알고리즘
Archives
- Today
- Total
1일1알
백준 1987번 알파벳 C++ 본문
백트래킹을 이용해서 해결할 수 있는 문제이다.
처음에 방문한 알파벳을 set에 저장해서 이미 방문한 곳인지 확인해서 풀었더니 시간초과가 났다.
그래서 알파벳 개수의 크기의 visited 배열을 만들어서 방문 체크를 O(1)에 할 수 있도록 수정했더니 통과되었다.
#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 r, c;
int ans = 0;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<vector<char>> board(20, vector<char>(20));
vector<bool> visited(26, false);
void BT(int row, int col, int cnt) {
for (int i = 0; i < 4; i++) {
int nextRow = row + dRow[i];
int nextCol = col + dCol[i];
if (nextRow < 0 || nextRow >= r) continue;
if (nextCol < 0 || nextCol >= c) continue;
char target = board[nextRow][nextCol] - 65;
if (visited[target]) continue;
visited[target] = true;
BT(nextRow, nextCol, cnt + 1);
visited[target] = false;
}
ans = max(ans, cnt);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> r >> c;
for (int i = 0; i < r; i++) {
string str;
cin >> str;
for (int j = 0; j < c; j++) {
board[i][j] = str[j];
}
}
visited[board[0][0] - 65] = true;
BT(0, 0, 1);
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 2617번 구슬 찾기 C++ (0) | 2022.03.01 |
---|---|
백준 2206번 벽 부수고 이동하기 C++ (0) | 2022.02.28 |
백준 2748번 피보나치 수 2 C++ (0) | 2022.02.26 |
백준 4577번 소코반 C++ (0) | 2022.02.25 |
백준 11066번 파일 합치기 C++ (0) | 2022.02.23 |