https://www.acmicpc.net/problem/7573
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
|
#include <iostream>
#include <algorithm>
#include <vector>
std::vector<std::pair<int, int>> fish;
int N, I, M;
int main()
{
// 모눈종이의 크기, 그물의 길이, 물고기의 수 N, l, M
std::cin >> N >> I >> M;
fish = std::vector<std::pair<int, int>>(M);
for (int i = 0; i < M; ++i)
{
std::cin >> fish[i].first>> fish[i].second;
}
int max = 0;
//std::sort(fish.begin(), fish.end());
for (int i = 1; i < I / 2; ++i)
{
for (int j = 1; j < I / 2; ++j)
{
//그물의 크기
if (i * 2 + j * 2 == I)
{
//물고기 좌표를 찾아감
for (int idx = 0; idx < fish.size(); ++idx)
{
for (int y = fish[idx].first - i; y < fish[idx].first + i; ++y)
{
for (int x = fish[idx].second - j; x < fish[idx].second + j; ++x)
{
int cntFish = 0;
for (int iter = idx; iter < fish.size(); ++iter)
{
//물고기가 그물의 세로방향 밖에 있으면 continue
if(fish[iter].first < y || y + i < fish[iter].first) continue;
//물고기가 그물의 가로방향 밖에 있으면 continue
if(fish[iter].second < x || x + j < fish[iter].second) continue;
++cntFish;
}
if (cntFish > max) max = cntFish;
}
}
}
}
}
}
std::cout << max;
return 0;
}
|
cs |
for i j로 행-열 만 탐색하면 안되고
물고기의 좌표를 찾으면 그 좌표에서부터 상하좌우 가능한 모든 그물의 위치를 다 살펴보아야 한다.
위의 코드는 효율적인 코드는 아니다. 모든 위치에 대해 살펴보는건 좋으나 필요없는 부분까지 살펴보고 있다. 필요없는 부분을 쳐내면 더 좋을 것임
'알고리즘' 카테고리의 다른 글
백준 10971 : 외판원 순회 2 & koi : 연구활동 가는길 (0) | 2020.04.24 |
---|---|
백준 2615 : 오목 (0) | 2020.04.20 |
백준 2622 : 삼각형 만들기 (0) | 2020.03.28 |
완전탐색, 전체탐색법 (0) | 2020.03.26 |
백준 2178 : 미로탐색(bfs) (0) | 2020.03.26 |