NUC_HomeWork1 -- POJ1088(DP)
生活随笔
收集整理的這篇文章主要介紹了
NUC_HomeWork1 -- POJ1088(DP)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
D -?滑雪
1 2 3 4 5
16 17 18 19 6
15 24 25 20 7
14 23 22 21 8
13 12 11 10 9
一個人可以從某個點滑向上下左右相鄰四個點之一,當且僅當高度減小。在上面的例子中,一條可滑行的滑坡為24-17-16-1。當然25-24-23-...-3-2-1更長。事實上,這是最長的一條。
小白上的記憶化搜索
int d(int i, int j)
{
if(d[i][j] >= 0)
return d[i][j];
return d[i][j] = a[i][j] + (i == n ? 0 : d(i+1, j) >? d[i+1][j+1]);
}
同本題很想啊
弄一個dis[][]數組保存距離,然后看它4個方向能否繼續走下去,能走下去,就一直遞歸下去 1 #include <cstdio> 2 #include <iostream> 3 #include <cstring> 4 #include <algorithm> 5 6 const int MAXN = 110; 7 int arr[MAXN][MAXN]; 8 int dis[MAXN][MAXN]; 9 int mov[4][2] = {{-1, 0}, {1, 0}, {0, 1}, {0, -1}}; 10 int line, col; 11 12 bool test(int x, int y) 13 { 14 if(x >= 0 && x < line && y >= 0 && y < col) 15 return true; 16 return false; 17 } 18 19 int d(int x, int y) 20 { 21 int tmp; 22 if(dis[x][y]) 23 return dis[x][y]; 24 25 for(int i = 0; i < 4; ++i) 26 { 27 int xx = x + mov[i][0]; 28 int yy = y + mov[i][1]; 29 if(test(xx, yy)) 30 { 31 if(arr[x][y] > arr[xx][yy]) 32 { 33 tmp = d(xx, yy); 34 dis[x][y] = dis[x][y] > tmp ? dis[x][y] : tmp + 1; 35 } 36 } 37 } 38 return dis[x][y]; 39 } 40 41 int main() 42 { 43 44 while(scanf("%d %d", &line, &col) != EOF) 45 { 46 for(int i = 0; i < line; i++) 47 for(int j = 0; j < col; j++) 48 scanf("%d", &arr[i][j]); 49 50 memset(dis, 0, sizeof(dis)); 51 52 int ans = 0, tmp; 53 for(int i = 0; i < line; i++) 54 { 55 for(int j = 0; j < col; j++) 56 { 57 tmp = d(i, j); 58 ans = ans > tmp ? ans : tmp; 59 } 60 } 61 62 printf("%d\n", ans + 1); 63 } 64 return 0; 65 } View Code
Description
Michael喜歡滑雪百這并不奇怪, 因為滑雪的確很刺激。可是為了獲得速度,滑的區域必須向下傾斜,而且當你滑到坡底,你不得不再次走上坡或者等待升降機來載你。Michael想知道載一個區域中最長底滑坡。區域由一個二維數組給出。數組的每個數字代表點的高度。下面是一個例子?1 2 3 4 5
16 17 18 19 6
15 24 25 20 7
14 23 22 21 8
13 12 11 10 9
一個人可以從某個點滑向上下左右相鄰四個點之一,當且僅當高度減小。在上面的例子中,一條可滑行的滑坡為24-17-16-1。當然25-24-23-...-3-2-1更長。事實上,這是最長的一條。
Input
輸入的第一行表示區域的行數R和列數C(1 <= R,C <= 100)。下面是R行,每行有C個整數,代表高度h,0<=h<=10000。Output
輸出最長區域的長度。Sample Input
5 5 1 2 3 4 5 16 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9Sample Output
25小白上的記憶化搜索
int d(int i, int j)
{
if(d[i][j] >= 0)
return d[i][j];
return d[i][j] = a[i][j] + (i == n ? 0 : d(i+1, j) >? d[i+1][j+1]);
}
同本題很想啊
弄一個dis[][]數組保存距離,然后看它4個方向能否繼續走下去,能走下去,就一直遞歸下去 1 #include <cstdio> 2 #include <iostream> 3 #include <cstring> 4 #include <algorithm> 5 6 const int MAXN = 110; 7 int arr[MAXN][MAXN]; 8 int dis[MAXN][MAXN]; 9 int mov[4][2] = {{-1, 0}, {1, 0}, {0, 1}, {0, -1}}; 10 int line, col; 11 12 bool test(int x, int y) 13 { 14 if(x >= 0 && x < line && y >= 0 && y < col) 15 return true; 16 return false; 17 } 18 19 int d(int x, int y) 20 { 21 int tmp; 22 if(dis[x][y]) 23 return dis[x][y]; 24 25 for(int i = 0; i < 4; ++i) 26 { 27 int xx = x + mov[i][0]; 28 int yy = y + mov[i][1]; 29 if(test(xx, yy)) 30 { 31 if(arr[x][y] > arr[xx][yy]) 32 { 33 tmp = d(xx, yy); 34 dis[x][y] = dis[x][y] > tmp ? dis[x][y] : tmp + 1; 35 } 36 } 37 } 38 return dis[x][y]; 39 } 40 41 int main() 42 { 43 44 while(scanf("%d %d", &line, &col) != EOF) 45 { 46 for(int i = 0; i < line; i++) 47 for(int j = 0; j < col; j++) 48 scanf("%d", &arr[i][j]); 49 50 memset(dis, 0, sizeof(dis)); 51 52 int ans = 0, tmp; 53 for(int i = 0; i < line; i++) 54 { 55 for(int j = 0; j < col; j++) 56 { 57 tmp = d(i, j); 58 ans = ans > tmp ? ans : tmp; 59 } 60 } 61 62 printf("%d\n", ans + 1); 63 } 64 return 0; 65 } View Code
?
轉載于:https://www.cnblogs.com/ya-cpp/p/4075252.html
總結
以上是生活随笔為你收集整理的NUC_HomeWork1 -- POJ1088(DP)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 安装ipvsadm 用make编译出现错
- 下一篇: ED/EP系列5《消费指令》