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
- directx
- 2294
- winapi
- algorithm
- NRVO
- RootMotion
- DeferredRendering
- 팰린드롬 만들기
- IFileDialog
- 오블완
- baekjoon
- 1563
- Frustum
- DirectX11
- softeer
- 줄 세우기
- 프로그래머스
- UnrealEngine4
- UnrealEngine5
- const
- RVO
- 백준
- Programmers
- UE5
- GeeksForGeeks
- Unreal Engine5
- 언리얼엔진5
- C
- 티스토리챌린지
- C++
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 16987번 : 계란으로 계란치기 본문
https://www.acmicpc.net/problem/16987
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
|
struct Node
{
int s;
int w;
};
int n, a, b;
vector<Node> eggs;
int answer = 0;
void DFS(int index)
{
if (index >= n)
{
int count = 0;
for (int i = 0; i < n; ++i)
{
if (eggs[i].s <= 0) ++count;
}
answer = max(answer, count);
return;
}
bool check = false;
if (eggs[index].s <= 0) DFS(index + 1);
else
{
for (int i = 0; i < n; ++i)
{
if (i == index) continue; // 자기 자신이면 넘어가기.
if (eggs[i].s <= 0) continue; // 깨져있으면 넘어가기.
check = true;
eggs[index].s -= eggs[i].w; // 서로 딜교
eggs[i].s -= eggs[index].w; //
DFS(index + 1);
eggs[index].s += eggs[i].w;
eggs[i].s += eggs[index].w;
}
if (!check) DFS(n);
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; ++i)
{
cin >> a >> b;
eggs.push_back({ a,b });
}
DFS(0); //
cout << answer;
}
|
cs |
문제를 풀이하는게 제일 어려웠던 것 같다. 그냥 이해를 잘 못한걸수도 있긴한데, 좀더 명확하게 수행해야할 동작에 대해서 설명하면 좋지 않았을까..한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2805번 : 나무 자르기 (0) | 2023.04.19 |
---|---|
[Algorithm] Baekjoon 11967번 : 불켜기 (0) | 2023.03.27 |
[Algorithm] Baekjoon 1941번 : 소문난 칠공주 (0) | 2023.03.25 |
[Algorithm] Baekjoon 15649번 : N과 M(1) (0) | 2023.03.25 |
[Algorithm] Baekjoon 17780번 : 새로운 게임 (0) | 2023.03.17 |