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
- softeer
- UE5
- 프로그래머스
- 오블완
- directx
- IFileDialog
- C
- RootMotion
- UnrealEngine4
- winapi
- algorithm
- C++
- 티스토리챌린지
- baekjoon
- Unreal Engine5
- 1563
- 팰린드롬 만들기
- UnrealEngine5
- 언리얼엔진5
- 2294
- GeeksForGeeks
- RVO
- DirectX11
- Programmers
- 줄 세우기
- Frustum
- DeferredRendering
- 백준
- const
- NRVO
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 6987번 : 월드컵 본문
https://www.acmicpc.net/problem/6987
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
|
#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>
using namespace std;
bool results[4] = { false };
int arr[4][6][3];
int curMatch[6][3] = { 0 };
void CheckResults()
{
for (int i = 0; i < 4; ++i)
{
if (!results[i])
{
bool isBreak = false;
for (int j = 0; j < 6; ++j)
{
for (int k = 0; k < 3; ++k)
{
if (arr[i][j][k] != curMatch[j][k])
{
isBreak = true;
break;
}
}
if (isBreak) break;
}
if (!isBreak)
{
results[i] = true;
}
}
}
}
const int team1[] = { 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4 };
const int team2[] = { 1, 2, 3, 4, 5, 2, 3, 4, 5, 3, 4, 5, 4, 5, 5 };
void DFS(const int round)
{
if (round == 15) // 모든 경기를 끝냄.
{
CheckResults();
return;
}
const int firstTeam = team1[round];
const int secondTeam = team2[round];
// 이긴경우
curMatch[firstTeam][0]++;
curMatch[secondTeam][2]++;
DFS(round+1);
curMatch[firstTeam][0]--;
curMatch[secondTeam][2]--;
// 무승부
curMatch[firstTeam][1]++;
curMatch[secondTeam][1]++;
DFS(round+1);
curMatch[firstTeam][1]--;
curMatch[secondTeam][1]--;
// 패배
curMatch[firstTeam][2]++;
curMatch[secondTeam][0]++;
DFS(round+1);
curMatch[firstTeam][2]--;
curMatch[secondTeam][0]--;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
for (int i = 0; i < 4; ++i)
{
for (int j = 0; j < 6; ++j)
{
cin >> arr[i][j][0] >> arr[i][j][1] >> arr[i][j][2];
}
}
DFS(0);
for (int i = 0; i < 4; ++i)
{
cout << results[i] << ' ';
}
return 0;
}
|
cs |
아... 저렇게 각팀의 경기를 team1, team2로 저장해서 진행하는 것을 생각 못했다.
생각보다 오래걸린문제.
저걸 생각못했을 때는 탐색을 어떻게 진행해야하나? 고민을 많이 했는데.. 덕분에 또 배우고 간다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 15724번 : 주지수 (0) | 2024.10.17 |
---|---|
[Algorithm]Baekjoon 1813번 : 후보 추천하기 (0) | 2024.10.17 |
[Algorithm]Baekjoon 1577번 : 도로의 개수 (1) | 2024.10.16 |
[Algorithm]Baekjoon 2306번 : 유전자 (0) | 2024.10.16 |
[Algorithm]Baekjoon 2981번 : 검문 (1) | 2024.10.15 |