면접 문제 47: 선물의 최대 가치
제목 설명
제목 해독
코드
class Solution {
public:
int movingCountCore(int *giftMatrix, int rows, int cols, int row, int col){
int xia = 0, you = 0;
int result = 0;
//
if(row < rows-1){
xia = movingCountCore(giftMatrix, rows, cols, row+1, col);
}
//
if(col < cols-1){
you = movingCountCore(giftMatrix, rows, cols, row, col+1);
}
result = xia > you ? xia : you;
return result + giftMatrix[row * cols + col];
}
int movingCount(int *giftMatrix, int rows, int cols){
if(rows <= 0 || cols <= 0){
return 0;
}
return movingCountCore(giftMatrix, rows, cols, 0, 0);
}
};
int main(){
int giftMatrix[] = {1, 10, 3, 8, 12 , 2, 9, 6, 5, 7, 4, 11, 3, 7, 16, 5};
int rows = 4;
int cols = 4;
Solution ss;
cout<
#include
using namespace std;
class Solution {
public:
int max_gift(int *present, int rows, int cols){
if (present == NULL || rows < 1 || cols < 1){
return 0;
}
int* maxValues = new int[cols]; // 0
for (int i = 0; i < rows; ++i){
for (int j = 0; j < cols; ++j){
int up = 0;
int left = 0;
if (i > 0){
up = maxValues[j];
}
if (j > 0){
left = maxValues[j-1];
}
maxValues[j] = max(up, left) + present[i * cols + j];
}
}
int max_value = maxValues[cols-1];
delete[] maxValues;
return max_value;
}
};
int main()
{
Solution ss;
int rows = 4;
int cols = 4;
int present[16] = {1, 10, 3, 8,
12, 2, 9, 6,
5, 7, 4, 11,
3, 7, 16, 5};
cout<
총결산 전망
나는 분할선, 나는 분할선, 나는 분할선
#include
using namespace std;
class Solution {
public:
int max_gift_core(int *present, int rows, int cols, int row, int col){
int you = 0;
int xia = 0;
int result = 0;
//
if (col < cols-1){
you = present[row * cols + col+1];
}
//
if (row < rows-1){
xia = present[(row+1) * cols + col];
}
if (you > xia){
result = max_gift_core(present, rows, cols, row, col+1);
}
else if(xia > you){
result = max_gift_core(present, rows, cols, row+1, col);
}
else{ // you = xia,
if (you != 0){ // 0, ,
result = max_gift_core(present, rows, cols, row, col+1);
}
else{ // you=xia=0,
result = 0;
}
}
return present[row * cols + col] + result;
}
int max_gift(int *present, int rows, int cols){
if (present == NULL || rows < 1 || cols < 1){
return 0;
}
return max_gift_core(present, rows, cols, 0, 0);
}
};
int main()
{
Solution ss;
int rows = 4;
int cols = 4;
int present[16] = {1, 10, 3, 8,
12, 2, 9, 6,
5, 7, 4, 11,
3, 7, 16, 5};
cout<
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.