zoukankan      html  css  js  c++  java
  • HDU 3260/POJ 3827 Facer is learning to swim(DP+搜索)(2009 Asia Ningbo Regional)

    Description

    Facer is addicted to a game called "Tidy is learning to swim". But he finds it too easy. So he develops a new game called "Facer is learning to swim" which is more difficult and more interesting. 
    In the new game, a robot named "Facer" is swimming in a pool. The pool can be considered as a vertical N x M grid. The coordinates of the top-left cell is (1,1), and the coordinates of the bottom-right cell is (N, M). Cells in the top rows are called "surface cells", and all other cells are called "under water cells". 
    Figure 1. The swimming pool. Shadowed cells are poisonous.
    Facer starts swimming from the top-left cell (1,1) and must arrive at the top-right cell (1, M). He has a constant horizontal speed of 1 per second, and a vertical speed of v per second. v is always integer and can be changed. If v is positive, it means Facer is moving down; and if v is negative, it means Facer is moving up. So if Facer is at cell (x, y) now, he will arrive at cell (x + v, y + 1) after a second. Be careful that if x + v > N, Facer will get to cell (N, y + 1) because he cannot move down anymore and of course if x + v < 1, Facer will get to cell (1, y + 1) because he cannot fly. Please remember that all the ``under water cells" in the right-most column are poisonous. If Facer goes into those cells, he will die. 
    The capacity of Facer's oxygen bottle is limited, and when Facer gets into a surface cell, the oxygen bottle is refilled automatically. Facer has to refill his oxygen bottle every K seconds, which means that during the time between two refillings, Facer can only pass at most K - 1 under water cells in the horizontal direction. 
    In every cell, there is either a "speed changing machine" or a "money box" (can't be both). Every speed changing machine has a value T and every money box has a value P. 
    You have got enough number of devices called "speedo". Every speedo has a value Q which is 1 or -1. You can put your speedos in any cells, but you can put at most one speedo in a cell. 
    When Facer reaches a cell, the speed changing machine of value T in that cell (if there is one) will change his vertical speed by T, and the speedo of value Q in that cell (if there is one) will change his vertical speed by Q. For example, if Facer's vertical speed is v when he arrives at a cell with a speed changing machine of value T and a speedo of value Q, his vertical speed will be changed to v + T + Q immediately. There are three more things you need to know about speed changing: 
    1. All speed changing machines in the surface cells can't work.
    2. When reaching a surface cell without a speedo, Facer's vertical speed becomes zero immediately; and when reaching a surface cell with a speedo of value Q, Facer's vertical speed becomes Q immediately.
    3. When reaching a bottom cell, though Facer can't go down any more, his vertical speed will NOT be changed unless there is a speedo or a speed changing machine in that cell. It's maybe sound a little bit weird but Facer really is such a weird guy.
    When arriving at a cell with a money box of value P, Facer gets P dollars (In fact, if P is negative, Facer loses |P| dollars). Facer's total amount of money can be negative -- that means Facer owes some money to the pool's owner. 
    You task is deploying your speedos in a smart way before Facer starts swimming, so Facer can get money as much as possible when he arrives at cell (1, M). Facer's initial vertical speed is zero and if you put a speedo in the cell (1,1), it will change Facer's initial vertical speed.

    Input

    Multiple test cases, ended by a line of "0 0 0". For each test case: 
    The first line contains three integers N,M and K ( 1 <= N <= 100, 1 <= M <= 1000, 1 <= K <= 10), tells the size of the pool and Facer must refill the oxygen bottle every K seconds. 
    Following are N lines describing the cells by top to bottom order. Each line contains M elements, separated by blanks, telling the information about the cells of a row, by left to right order. There are only two kinds of elements: 
    1. a char "v" followed by an integer T, meaning that there is a "speed changing machine" of value T (-20 <= T <= 20) in the correspondent cell.
    2. a char "$" followed by an integer P, meaning that there is a "money box" of value P (-1000000 <= P <= 1000000) in the correspondent cell.

    Output

    For each test case, output one line containing an integer representing the maximum amount of money Facer can get when he reaches cell (1, M).

     

    题目大意:一个N*M的游泳池,要从(1, 1)游到(1, M),每个格子有变速器和钱(都可能为负),到了钱的地方可以拿到那些钱,到了变速器的地方速度就会加上那个变速器的速度。横向速度恒定为1,纵向速度可以改变,每次可以随意+1、-1或不变,变速器影响的也是纵向的速度。每K秒要到水面呼吸一次,求游到(1, M)的最大钱数。其他细节见题目。

    思路:首先朴素的DP(如dp[N, M, V, K]的那种)是没法过的,时间复杂度太大了。另辟蹊径,注意到K很小,只有10,而且每次到水面速度会变为0,那么可以利用这一点,dp[i]表示到(1, i)时取得的最大金钱,然后对(1, i)爆搜K步,每次时间复杂度为O(3^K),总复杂度为O(M * 3^K),也不过6 * 10^7。

    PS:这题坑爹的地方比较多,来一一细说。

    1、每个格子的P (-1000000 <= P <= 1000000),乘个1000绝对爆32位整数,但是人人都用int我也用了int,不知道大家有没看到答案在32位以内反正我是没看到。

    2、题目原句:and when reaching a surface cell with a speedo of value Q, Facer's vertical speed becomes Q immediately.

    3、翻译一下:当到达水平而且那个格子有一个变速器Q,那么速度变为Q(不知道有没翻译错)

    4、按这个说法,如果我所有格子都是V20,就不一定有答案了,题目是没说没答案怎么处理的……

    5、重点是我按上面的说法做AC不了,改成到达水面之后速度为0不管那个格子有木有变速器就能AC,WA了几次之后对拍别人的AC代码发现的。

    6、然后我看到了这句:All speed changing machines in the surface cells can't work。我承认我没认真看题但也不带这样坑我的啊……

    代码(POJ 1219MS):

     1 #include <cstdio>
     2 #include <algorithm>
     3 #include <cstring>
     4 #include <iostream>
     5 using namespace std;
     6 typedef long long LL;
     7 
     8 const int MAXN = 110;
     9 const int MAXM = 1010;
    10 const int INF = 0x3fff3fff;
    11 
    12 int dp[MAXM];
    13 int mat[MAXN][MAXM];
    14 bool money[MAXN][MAXM];
    15 int n, m, k;
    16 
    17 void dfs(int from, int ti, int tj, int spd, int sum) {
    18     if(ti < 1) ti = 1;
    19     if(ti > n) ti = n;
    20     if(ti == 1 && from != tj) {
    21         if(dp[tj] < sum) dp[tj] = sum;
    22         return ;
    23     }
    24     if(tj - from == k || tj == m) return ;
    25     if(money[ti][tj]) sum += mat[ti][tj];
    26     else if(ti != 1) spd += mat[ti][tj];
    27     dfs(from, ti + spd - 1, tj + 1, spd - 1, sum);
    28     dfs(from, ti + spd    , tj + 1, spd    , sum);
    29     dfs(from, ti + spd + 1, tj + 1, spd + 1, sum);
    30 }
    31 
    32 void solve() {
    33     dp[1] = 0;
    34     for(int i = 2; i <= m; ++i) dp[i] = -INF;
    35     for(int i = 1; i < m; ++i) {
    36         if(dp[i] == -INF) continue;
    37         dfs(i, 1, i, 0, dp[i]);
    38     }
    39     //for(int i = 1; i <= m; ++i) printf("%d
    ", dp[i] + money[1][i] * mat[1][i]);
    40     if(money[1][m]) dp[m] += mat[1][m];
    41     printf("%d
    ", dp[m]);
    42 }
    43 
    44 char lastch = ' ';
    45 
    46 inline char readchar() {
    47     while(lastch != 'v' && lastch != '$')
    48         lastch = getchar();
    49     return lastch;
    50 }
    51 
    52 inline int readint() {
    53     int g = 0, l;
    54     while(!isdigit(lastch) && lastch != '-') lastch = getchar();
    55     if(lastch == '-') {
    56         l = -1;
    57         lastch = getchar();
    58     }
    59     else l = 1;
    60     while(isdigit(lastch)) {
    61         g = g * 10 + lastch - '0';
    62         lastch = getchar();
    63     }
    64     return g * l;
    65 }
    66 
    67 int main() {
    68     while(true) {
    69         n = readint(); m = readint(); k = readint();
    70         if(n + m + k == 0) break;
    71         char c;
    72         for(int i = 1; i <= n; ++i) {
    73             for(int j = 1; j <= m; ++j) {
    74                 //scanf(" %c%d", &c, &mat[i][j]);
    75                 c = readchar();
    76                 mat[i][j] = readint();
    77                 money[i][j] = (c == '$');
    78             }
    79         }
    80         solve();
    81     }
    82 }
    View Code

    代码(POJ 1922MS):

     1 #include <cstdio>
     2 #include <algorithm>
     3 #include <cstring>
     4 #include <iostream>
     5 using namespace std;
     6 typedef long long LL;
     7 
     8 const int MAXN = 110;
     9 const int MAXM = 1010;
    10 const int INF = 0x3fff3fff;
    11 
    12 int dp[MAXM];
    13 int mat[MAXN][MAXM];
    14 bool money[MAXN][MAXM];
    15 int n, m, k;
    16 
    17 void dfs(int from, int ti, int tj, int spd, int sum) {
    18     if(ti < 1) ti = 1;
    19     if(ti > n) ti = n;
    20     if(ti == 1 && from != tj) {
    21         if(dp[tj] < sum) dp[tj] = sum;
    22         return ;
    23     }
    24     if(tj - from == k || tj == m) return ;
    25     if(money[ti][tj]) sum += mat[ti][tj];
    26     else if(ti != 1) spd += mat[ti][tj];
    27     dfs(from, ti + spd - 1, tj + 1, spd - 1, sum);
    28     dfs(from, ti + spd    , tj + 1, spd    , sum);
    29     dfs(from, ti + spd + 1, tj + 1, spd + 1, sum);
    30 }
    31 
    32 void solve() {
    33     dp[1] = 0;
    34     for(int i = 2; i <= m; ++i) dp[i] = -INF;
    35     for(int i = 1; i < m; ++i) {
    36         if(dp[i] == -INF) continue;
    37         dfs(i, 1, i, 0, dp[i]);
    38     }
    39     if(money[1][m]) dp[m] += mat[1][m];
    40     printf("%d
    ", dp[m]);
    41 }
    42 
    43 int main() {
    44     while(scanf("%d%d%d", &n, &m, &k) != EOF) {
    45         if(n + m + k == 0) break;
    46         char c;
    47         for(int i = 1; i <= n; ++i) {
    48             for(int j = 1; j <= m; ++j) {
    49                 scanf(" %c%d", &c, &mat[i][j]);
    50                 money[i][j] = (c == '$');
    51             }
    52         }
    53         solve();
    54     }
    55 }
    View Code
  • 相关阅读:
    前端页面实现报警器提示音效果
    Bootstrap相关优质项目学习清单
    Bootstrap相关优质项目学习清单
    [慕课笔记] node+mongodb建站攻略
    基础知识(11)- 异常、断言、日志和调试
    洛谷 P2580 于是他错误的点名开始了
    codevs 4189 字典
    HDU 1251 统计难题
    HDU 1827 Summer Holiday
    HDU 3836 Equivalent Sets
  • 原文地址:https://www.cnblogs.com/oyking/p/3268737.html
Copyright © 2011-2022 走看看