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
- 백준
- 티스토리챌린지
- Programmers
- UnrealEngine5
- 줄 세우기
- baekjoon
- IFileDialog
- Unreal Engine5
- 프로그래머스
- RVO
- 팰린드롬 만들기
- GeeksForGeeks
- 2294
- DirectX11
- const
- UE5
- Frustum
- winapi
- 오블완
- 언리얼엔진5
- C
- softeer
- algorithm
- 1563
- UnrealEngine4
- C++
- RootMotion
- directx
- DeferredRendering
- NRVO
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1025번 : 제곱수 찾기 본문
https://www.acmicpc.net/problem/1025
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
|
int n, m;
vector<string> arr;
unordered_map<int, bool> sqrNums;
int dirs[8][2] = {
{-1,0}, {1,0}, {0,-1}, {0,1},
{-1,-1}, {-1,1}, {1,1}, {1,-1}
};
bool checkInRange(int y, int x)
{
if (y < 0 || y >= n || x < 0 || x >= m) return false;
return true;
}
bool checkSqrNum(int num)
{
int temp = sqrt(num);
return temp * temp == num;
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
for (int i = 0; i < n; ++i)
{
string s;
cin >> s;
arr.push_back(s);
}
int maxNum = -1;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < m; ++j)
{
string s = "";
s += arr[i][j];
int sNum = stoi(s);
if (checkSqrNum(sNum)) maxNum = max(maxNum, sNum);
for (int d = 0; d < 8; ++d)
{
for (int offY = 1; offY <= 8; ++offY) // offset값
{
for (int offX = 1; offX <= 8; ++offX)
{
int curY = i + dirs[d][0] * offY;
int curX = j + dirs[d][1] * offX;
string ts = s;
while (1)
{
if (!checkInRange(curY, curX)) break;
ts += arr[curY][curX];
int num = stoi(ts);
if (checkSqrNum(num)) maxNum = max(maxNum, num);
curY += dirs[d][0] * offY;
curX += dirs[d][1] * offX;
}
}
}
}
}
}
cout << maxNum;
}
|
cs |
깔끔한 완전탐색문제이다.
모든 원소에 대해 8방향(상하좌우,각 대각선 총 4개)에 대해서 뻗어나가면서 숫자를 만들고 완전제곱수인지 검사할 건데, +1씩 뻗어나가는게 아니라 행과 열에 대해 '등차'를 유지만 하면 숫자를 만들 수 있다.
즉 행값은 +1, 열값은 +2씩 증가...하는 형태도 될 수 있다. (해당 백준링크의 맨 마지막 테스트케이스를 꼭 보기를 바란다)
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 15684번 : 사다리 조작 (0) | 2023.09.26 |
---|---|
[Algorithm] Baekjoon 13397번 : 구간 나누기 2 (0) | 2023.09.23 |
[Algorithm] Baekjoon 9079번 : 동전 게임 (0) | 2023.09.22 |
[Algorithm] Baekjoon 1039번 : 교환 (0) | 2023.09.22 |
[Algorithm] Baekjoon 14888번 : 연산자 끼워넣기 (0) | 2023.09.16 |