zoukankan      html  css  js  c++  java
  • 二分 + DP

    A - MAGRID
    Time Limit:10000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu
    Submit Status
    Appoint description: 

    Description

    Download as PDF
     

    ACM International Collegiate Programming Contest, Asia-Amritapuri Site, 2011

    Problem A: MAGRID

    Thanks a lot for helping Harry Potter in finding the Sorcerer's Stone of Immortality in October. Did we not tell you that it was just an online game ? uhhh! now here is the real onsite task for Harry. You are given a magrid S ( a magic grid ) having R rows and C columns. Each cell in this magrid has either a Hungarian horntail dragon that our intrepid hero has to defeat, or a flask of magic potion that his teacher Snape has left for him. A dragon at a cell (i,j) takes away |S[i][j]| strength points from him, and a potion at a cell (i,j) increases Harry's strength by S[i][j]. If his strength drops to 0 or less at any point during his journey, Harry dies, and no magical stone can revive him.

    Harry starts from the top-left corner cell (1,1) and the Sorcerer's Stone is in the bottom-right corner cell (R,C). From a cell (i,j), Harry can only move either one cell down or right i.e., to cell (i+1,j) or cell (i,j+1) and he can not move outside the magrid. Harry has used magic before starting his journey to determine which cell contains what, but lacks the basic simple mathematical skill to determine what minimum strength he needs to start with to collect the Sorcerer's Stone. Please help him once again.

    Input (STDIN):

    The first line contains the number of test cases T. T cases follow. Each test case consists of R C in the first line followed by the description of the grid in R lines, each containing C integers. Rows are numbered 1 to R from top to bottom and columns are numbered 1 to C from left to right. Cells with S[i][j] < 0 contain dragons, others contain magic potions.

    Output (STDOUT):

    Output T lines, one for each case containing the minimum strength Harry should start with from the cell (1,1) to have a positive strength through out his journey to the cell (R,C).

    Constraints:

    1 ≤ T ≤ 30 
    2 ≤ R, C ≤ 500 
    -10 3 ≤ S[i][j] ≤ 10 3
    S[1][1] = S[R][C] = 0 

    Time Limit : 3 s 
    Memory Limit : 64 MB 

    Sample Input:

    3
    2 3
    0 1 -3
    1 -2 0
    2 2
    0 1
    2 0
    3 4
    0 -2 -3 1
    -1 4 0 -2
    1 -2 -3 0

    Sample Output:

    2
    1
    2

    Explanation:

    Case 1 : If Harry starts with strength = 1 at cell (1,1), he cannot maintain a positive strength in any possible path. He needs at least strength = 2 initially. 
    Case 2 : Note that to start from (1,1) he needs at least strength = 1. 

    const int maxn = 600;

    int a[maxn][maxn];
    int dp[maxn][maxn];
    int n,m;
    int ok(int x)
    {
    dp[1][1] = x;
    repf(i,2,n)
    {
    dp[i][1] = dp[i-1][1] + a[i][1];
    if(dp[i][1] <= 0) dp[i][1] = -INF;
    }
    repf(i,2,m)
    {
    dp[1][i] = dp[1][i-1] + a[1][i];
    if(dp[1][i] <= 0) dp[1][i] = -INF;
    }
    repf(i,2,n)
    repf(j,2,m)
    {
    dp[i][j] = max(dp[i-1][j],dp[i][j - 1]);
    if(dp[i][j] <= 0) dp[i][j] = -INF;
    dp[i][j] += a[i][j];
    }
    return dp[n][m];
    }
    int main()
    {
    //freopen("in.txt","r",stdin);
    int t;
    cin>>t;
    while(t--)
    {
    scanf("%d%d",&n,&m);

    repf(i,1,n)
    repf(j,1,m)
    scanf("%d",&a[i][j]);

    int L = 1;
    int R = 100000000;
    int ans;
    while( L <= R)
    {
    int mid = (L + R)/2;
    if(ok(mid) > 0)
    {
    ans = mid;
    R = mid - 1;
    }else
    L = mid + 1;
    }
    cout<<ans<<endl;
    }
    return 0;
    }

  • 相关阅读:
    HTML onblur 事件属性
    插入光标颜色 | caret-color (Basic User Interface) – CSS 中文开发手册
    gc (Runtime) – Python 中文开发手册
    《宾狗》
    《凭什么相信你,我的CNN模型?(篇二:万金油LIME)》
    《凭什么相信你,我的CNN模型?(篇一:CAM和Grad-CAM)》
    《如何利用CAM(类激活图)动态可视化模型的学习过程》
    《Attention最新进展》
    TCP-IP四书五经
    《统计学习方法》
  • 原文地址:https://www.cnblogs.com/DreamHighWithMe/p/3456049.html
Copyright © 2011-2022 走看看