T1212:LETTERS

【題目描述】

給出一個R * S的大寫字母矩陣,一開始的位置爲左上角,你能夠向上下左右四個方向移動,而且不能移向曾經通過的字母。問最多能夠通過幾個字母。roe×ios

【輸入】

第一行,輸入字母矩陣行數R和列數S, 1 <= R, S <= 20ide

接着輸入R行S列的字母矩陣spa

【輸出】

最多能走過的不一樣字母的個數。code

【輸入樣例】

3 6
HFDFFB
AJHGDH
DGAGEH 

【輸出樣例】

6

代碼以下

 1 #include<iostream>
 2 using namespace std;
 3 char s[30][30];
 4 int row, col, maxn = -1;
 5 int vis[30][30], book[1010];
 6 int pos[4][2] = {{0, 1}, {0, -1}, {-1, 0}, {1, 0}};
 7 void dfs(int x, int y, int step){
 8     if(step > maxn)    maxn = step;
 9     for(int i = 0; i < 4; i++){
10         int tx = pos[i][0] + x, ty = pos[i][1] + y;
11         if(tx < 0 || tx > row - 1 || ty < 0 || ty > col - 1)    continue;
12         if(!vis[tx][ty] && !book[s[tx][ty]]){
13             vis[tx][ty] = 1;
14             book[s[tx][ty]] = 1;
15             dfs(tx, ty, step + 1);
16             book[s[tx][ty]] = 0;
17             vis[tx][ty] = 0;
18         }  
19     }
20 }
21 int main(){
22     cin >> row >> col;
23     for(int i = 0; i < row; i++){
24         for(int j = 0; j < col; j++){
25             cin >> s[i][j];
26         }
27     } 
28     vis[0][0] = 1;
29     book[s[0][0]] = 1;
30     dfs(0, 0, 1);
31     cout << maxn << endl;
32     return 0;
33 }
LETTERS

 

注意點

  1. 初始化
  2. 邊界處理
相關文章
相關標籤/搜索