관리 메뉴

기억을 위한 기록들

[백준 1937: 욕심쟁이 판다] - C++ 본문

Coding Test - cpp/DFS

[백준 1937: 욕심쟁이 판다] - C++

에드윈H 2021. 2. 15. 21:27

www.acmicpc.net/problem/1937

 

1937번: 욕심쟁이 판다

n*n의 크기의 대나무 숲이 있다. 욕심쟁이 판다는 어떤 지역에서 대나무를 먹기 시작한다. 그리고 그 곳의 대나무를 다 먹어 치우면 상, 하, 좌, 우 중 한 곳으로 이동을 한다. 그리고 또 그곳에서

www.acmicpc.net

#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