Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 애셋로드
- UE_LOG
- 스마트포인터
- dataasset
- 자료구조
- 람다사용정렬
- BFS
- 람다
- 프로그래머스
- 크리티컬섹션
- stl
- 델리게이트
- C++최적화
- 정렬
- map
- UML관련
- C++
- 언리얼가비지컬렉터
- UE4 커스텀로그
- 데이터애셋
- 언리얼엔진구조체
- 강참조
- 약참조
- moreeffectiveC++
- UELOG
- 선택정렬
- 정렬알고리즘
- 알고리즘
- enumasByue
- unorder_map
Archives
- Today
- Total
기억을 위한 기록들
[백준 1937: 욕심쟁이 판다] - C++ 본문
www.acmicpc.net/problem/1937
#include<iostream>
#include<string>
#include<string.h>
#include<algorithm>
using namespace std;
int n;
int map[501][501];
int dp[501][501];
int temp = -214000000;
int dir[4][2] = {
{-1,0}
,{0,1}
,{1,0}
,{0,-1}
};
int D(int _x, int _y)
{
if (dp[_x][_y] != 0)
{
return dp[_x][_y];
}
dp[_x][_y] = 1;
for (int i = 0; i < 4; i++)
{
int nextX = _x + dir[i][0];
int nextY = _y + dir[i][1];
if (nextX < 0 || nextY < 0 || n <= nextX || n <= nextY)
continue;
if (map[_x][_y] < map[nextX][nextY])
dp[_x][_y] = max(dp[_x][_y], D(nextX, nextY) + 1);
}
return dp[_x][_y];
}
int main() {
cin >> n;
int result = -214000000;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cin >> map[i][j];
}
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
temp = D(i, j);
if (result < temp)
{
result = temp;
}
}
}
cout << result << endl;
return 0;
}
'Coding Test - cpp > DFS' 카테고리의 다른 글
[백준 2210: 숫자판 점프] - C++ (0) | 2021.02.18 |
---|---|
[프로그래머스 lv2] 단어 변환- c++ (0) | 2021.02.16 |
[백준 2573: 빙산] - C++ (0) | 2021.02.15 |
[백준 10026: 적록색약] - C++ (0) | 2021.02.15 |
[백준 1987: 알파벳] - C++ (0) | 2021.02.15 |