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
- 절두체 크기
- 프로그래머스
- C
- 백준
- RVO
- 줄 세우기
- 팰린드롬 만들기
- C++
- const
- DeferredRendering
- UnrealEngine5
- 오블완
- UnrealEngine4
- baekjoon
- directx
- UE5
- algorithm
- winapi
- IFileDialog
- Frustum
- NRVO
- Programmers
- 2294
- 1563
- RootMotion
- GeeksForGeeks
- softeer
- 언리얼엔진5
- 티스토리챌린지
- DirectX11
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 18430번 :: 무기 공학 본문
https://www.acmicpc.net/problem/18430
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_set>
using namespace std;
int n, m;
int answer = 0;
bool visited[7][7] = { false };
int wood[7][7];
bool IsValidLocation(int y, int x)
{
if (y < 0 || y == n) return false;
if (x < 0 || x == m) return false;
if (visited[y][x]) return false;
return true;
}
int dirs[4][2][2] =
{
{
{0,-1}, {1,0}
},
{
{0,-1}, {-1,0}
},
{
{-1,0}, {0,1}
},
{
{1,0}, {0,1}
}
};
void DFS(int cy, int cx, int sumStrength)
{
if (cy == n)
{
cy = 0;
++cx;
}
if (cx == m) return;
if (!visited[cy][cx])
{
visited[cy][cx] = true;
int curStrength = wood[cy][cx] * 2;
for (int i = 0; i < 4; ++i) // 부메랑 만들기 시도해보기.
{
int y1 = cy + dirs[i][0][0];
int x1 = cx + dirs[i][0][1];
int y2 = cy + dirs[i][1][0];
int x2 = cx + dirs[i][1][1];
if (IsValidLocation(y1, x1) && IsValidLocation(y2, x2)) // 부메랑 만들기.
{
curStrength += wood[y1][x1] + wood[y2][x2];
answer = max(answer, sumStrength + curStrength);
visited[y1][x1] = true;
visited[y2][x2] = true;
DFS(cy+1, cx, sumStrength + curStrength);
visited[y1][x1] = false;
visited[y2][x2] = false;
curStrength -= wood[y1][x1] + wood[y2][x2];
}
}
visited[cy][cx] = false;
}
// 부메랑 안만들고 넘어가기.
DFS(cy+1, cx, sumStrength);
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < m; ++j)
{
cin >> wood[i][j];
}
}
DFS(0, 0, 0);
cout << answer;
}
|
cs |
내가 완전탐색에 약했다는 걸 알 수 있었던 문제... 사실은 알고있긴 했었지만..
부메랑을 만들고 다음 탐색지점을 찾는거를 다시 2중포문으로 처음부터 돌렸더니 통과는했다만 1000ms대가 나왔다.
다른사람 풀이보고나서야 이해를 해서 적용시켰다.
실제 코테때는 이정도의 문제는 굉장히 빨리 풀어야하는데;; 큰일날뻔했다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 19942번 :: 다이어트 (1) | 2024.11.04 |
---|---|
[Algorithm]Baekjoon 17136번 :: 색종이 붙이기 (0) | 2024.11.03 |
[Algorithm]Baekjoon 15661번 :: 링크와 스타트 (0) | 2024.10.30 |
[Algorithm]Baekjoon 3649번 :: 로봇 프로젝트 (0) | 2024.10.29 |
[Algorithm]Baekjoon 13144번 :: List of Unique Numbers (0) | 2024.10.29 |