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
- 2294
- const
- NRVO
- Frustum
- directx
- 1563
- C++
- GeeksForGeeks
- RootMotion
- UnrealEngine4
- 티스토리챌린지
- DirectX11
- winapi
- 팰린드롬 만들기
- UE5
- UnrealEngine5
- RVO
- 프로그래머스
- 백준
- baekjoon
- 오블완
- Programmers
- Unreal Engine5
- algorithm
- DeferredRendering
- C
- 줄 세우기
- IFileDialog
- 언리얼엔진5
- softeer
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 2585번 : 경비행기 본문
https://www.acmicpc.net/problem/2585
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
|
struct Node
{
int y;
int x;
int count = 0;
};
int convertLiter(int y2, int x2, int y1, int x1)
{
int distance = (int)ceil(sqrt(pow(y2 - y1, 2) + pow(x2 - x1, 2)));
if (distance % 10 == 0) return distance / 10;
else return distance / 10 + 1;
}
int n, k;
vector<Node> nodes;
bool visited[1001] = { false };
bool BFS(int standardLiter)
{
memset(visited, false, sizeof(visited));
queue<Node> q;
q.push({ 0,0,k });
while (!q.empty())
{
int curY = q.front().y;
int curX = q.front().x;
int curCount = q.front().count;
q.pop();
int liter = convertLiter(curY, curX, 10000, 10000);
if (liter <= standardLiter)
{
return true;
}
if (curCount == 0) continue;
for (int i = 0; i < n; ++i)
{
if (visited[i]) continue;
int nextY = nodes[i].y;
int nextX = nodes[i].x;
int liter = convertLiter(curY, curX, nextY, nextX);
if (liter <= standardLiter)
{
visited[i] = true;
q.push({ nextY,nextX,curCount - 1 });
}
}
}
return false;
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
for (int i = 0; i < n; ++i)
{
int y, x;
cin >> x >> y;
nodes.push_back({ y,x });
}
int left = 0;
int right = 10000000;
int answer = 0;
while (left <= right)
{
int mid = (left + right) / 2;
if (BFS(mid))
{
answer = mid;
right = mid - 1;
}
else
{
left = mid + 1;
}
}
cout << answer;
return 0;
}
|
cs |
이전에 풀었던 결정문제와 같은 유형의 문제이다.
주어진 조건을 완전탐색으로하려면 당연히 시간초과가 걸리기 때문에, 아예 허용가능한 기름량을 이분탐색으로 조절해가며 해당 기름량으로 목적지까지 갈수있는지에 대해 Yes or No를 구한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2170번 : 선 긋기 (0) | 2023.06.15 |
---|---|
[Algorithm] Baekjoon 11559번 : Puyo Puyo (0) | 2023.05.20 |
[Algorithm] Baekjoon 9082번 : 지뢰찾기 (1) | 2023.05.16 |
[Algorithm] Baekjoon 1935번 : 후위 표기식2 (0) | 2023.05.12 |
[Algorithm]Baekjoon 2632번 :: 피자판매 (2) | 2023.05.10 |