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
- 탄막 스킬 범위
- SWEA
- 백준
- 강의실2
- AI Hub
- 윈도우
- 3344
- MySQL
- 걷는건귀찮아
- 단어 수학
- 18249
- 우분투
- 알고리즘 목차
- 알고리즘
- 회의실 배정
- 탄막
- 유니티
- 영상 프레임 추출
- c#
- 원형
- 문자열 압축
- 탄막 이동
- 마우스 따라다니기
- 2020 KAKAO BLIND RECRUITMENT
- 수 만들기
- mysqld.sock
- 자료구조 목차
- 그리디알고리즘
- 토글 그룹
- 3273
Archives
- Today
- Total
와이유스토리
[DP(Top-Down)]백준 1937 욕심쟁이 판다 C++ 본문
https://www.acmicpc.net/problem/1937
#include <iostream>
#include <vector>
using namespace std;
int n;
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
vector<vector<int>> board;
vector<vector<int>> dp;
int func(int x, int y) {
int& ret = dp[y][x];
if (ret != -1) return ret;
ret = 1;
for(int i=0; i<4; i++) {
int newX = x + dx[i];
int newY = y + dy[i];
if ((newX < 0) || (newY < 0) || (newX >= n) || (newY >= n)) continue;
if (board[newY][newX] <= board[y][x]) continue;
ret = max(ret, func(newX, newY) + 1);
}
return ret;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n;
board.resize(n, vector<int>(n, 0));
for(int i=0; i<n; i++) {
for(int j=0; j<n; j++)
cin >> board[i][j];
}
dp.resize(n, vector<int>(n, -1));
int answer = 1;
for(int i=0; i<n; i++) {
for(int j=0; j<n; j++) {
answer = max(answer, func(i, j));
}
}
cout << answer;
return 0;
}
'코딩테스트 > 동적계획법' 카테고리의 다른 글
[DP(Top-Down)] 백준 10835 카드게임 C++ (0) | 2023.09.04 |
---|---|
[DP(Top-Down)] 백준 2565 전깃줄 C++ (0) | 2023.09.03 |
[누적합] 프로그래머스 파괴되지 않은 건물 C++ (0) | 2023.02.12 |
[누적합] 백준 11660 구간 합 구하기 5 C++ (0) | 2022.02.09 |
[누적합] 백준 11659 구간 합 구하기 4 C++ (0) | 2022.02.09 |
Comments