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 | 31 |
Tags
- UE5
- UnrealEngine4
- winapi
- RVO
- IFileDialog
- Unreal Engine5
- 2294
- Frustum
- algorithm
- Programmers
- 줄 세우기
- RootMotion
- C++
- DirectX11
- NRVO
- 프로그래머스
- 오블완
- 1563
- GeeksForGeeks
- 팰린드롬 만들기
- DeferredRendering
- UnrealEngine5
- const
- baekjoon
- directx
- softeer
- 백준
- 언리얼엔진5
- C
- 티스토리챌린지
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1987번 : 알파벳 본문
https://www.acmicpc.net/problem/1987
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
using namespace std;
int maxRow;
int maxColumn;
char board[20][20] = { 0 };
int answer = 0;
int totalSize = 0;
map<char, bool> check;
int dir[4][2] = { {-1,0},{1,0},{0,-1},{0,1} }; // 상하좌우
void solution(int row, int column, int count)
{
if (answer == totalSize) return;
check[board[row][column]] = true;
count += 1;
if (count >= answer) answer = count;
for (int i = 0; i < 4; i++)
{
int nextRow = row + dir[i][0];
int nextCol = column + dir[i][1];
if (nextRow < 0 || nextRow >= maxRow) continue;
if (nextCol < 0 || nextCol >= maxColumn) continue;
if (check[board[nextRow][nextCol]]) continue;
solution(nextRow, nextCol, count);
check[board[nextRow][nextCol]] = false;
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int row = 0;
int column = 0;
char input = 0;
cin >> row >> column;
maxRow = row;
maxColumn = column;
map<char, bool> tempCheck;
for (int i = 0; i < row; i++)
{
for (int j = 0; j < column; j++)
{
cin >> board[i][j];
if (!tempCheck[board[i][j]])
{
totalSize++;
tempCheck[board[i][j]] = true;
}
}
}
solution(0, 0, 0);
cout << answer;
}
|
cs |
이 문제도 어렵진 않은 문젠데, 처음에 제출을 했을 때 시간초과에 걸렸었다.
check변수를 전역적으로 안쓰고 매개변수로 각 함수호출마다 복사해서 쓰는 방식으로 체크했더니 시간초과에 걸렸었다.
함수호출할 조건을 체크하는 부분도 (행,열크기,방문검사) 저렇게 안하고 호출함수 첫부분에 했었는데, 생각해보니 그렇게 하면 함수에 들어가자마자 거의 바로 리턴되긴하더라도, 어쨌든 함수호출 자체는 모든경우에 다 해버리기 때문에 매개변수의 check변수를 모든 경우에 다 복사해버린다. 함수호출자체도 결국 코스트가 있는 행위이기 때문에, 앞으로 문제 풀 때는 하면 안될 것 같다.
if(answer == totalSize) return;
-> 이부분은 결국 answer이 보드의 최대 중복되지 않는 알파벳개수가 된다면, 더이상 늘어날 일이 없기 때문에 작성한건데
딱히 시간이 더 줄거나 하진 않았다. 조금이라도 줄면 그러려니 하는데, 오히려 늘어났다;;
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2667번 : 단지번호붙이기 (0) | 2022.08.08 |
---|---|
[Algorithm]Baekjoon 1987번 : 숨바꼭질 (0) | 2022.08.06 |
[Algorithm]Baekjoon 1759번 : 암호 만들기 (0) | 2022.07.18 |
[Algorithm]Baekjoon 1182번 : 부분수열의 합 (0) | 2022.07.17 |
[Algorithm]Baekjoon 1922번 :: 네트워크 연결(크루스칼 알고리즘) (0) | 2022.07.09 |