zoukankan      html  css  js  c++  java
  • hdu 5234 happy birthday (bc #42 C) (DP)


    Happy birthday

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 672    Accepted Submission(s): 302


    Problem Description
    Today is Gorwin’s birthday. So her mother want to realize her a wish. Gorwin says that she wants to eat many cakes. Thus, her mother takes her to a cake garden. 

    The garden is splited into n*m grids. In each grids, there is a cake. The weight of cake in the i-th row j-th column is wij kilos, Gorwin starts from the top-left(1,1) grid of the garden and walk to the bottom-right(n,m) grid. In each step Gorwin can go to right or down, i.e when Gorwin stands in (i,j), then she can go to (i+1,j) or (i,j+1) (However, she can not go out of the garden). 

    When Gorwin reachs a grid, she can eat up the cake in that grid or just leave it alone. However she can’t eat part of the cake. But Gorwin’s belly is not very large, so she can eat at most K kilos cake. Now, Gorwin has stood in the top-left grid and look at the map of the garden, she want to find a route which can lead her to eat most cake. But the map is so complicated. So she wants you to help her.
     

    Input
    Multiple test cases (about 15), every case gives n, m, K in a single line.

    In the next n lines, the i-th line contains m integers wi1,wi2,wi3,wim which describes the weight of cakes in the i-th row

    Please process to the end of file.

    [Technical Specification]

    All inputs are integers.

    1<=n,m,K<=100

    1<=wij<=100
     

    Output
    For each case, output an integer in an single line indicates the maximum weight of cake Gorwin can eat.
     

    Sample Input
    1 1 2 3 2 3 100 1 2 3 4 5 6
     

    Sample Output
    0 16
    Hint
    In the first case, Gorwin can’t eat part of cake, so she can’t eat any cake. In the second case, Gorwin walks though below route (1,1)->(2,1)->(2,2)->(2,3). When she passes a grid, she eats up the cake in that grid. Thus the total amount cake she eats is 1+4+5+6=16.
     

    Source
     

    Recommend
    hujie   |   We have carefully selected several similar problems for you:  5338 5337 5336 5335 5334 
  • 相关阅读:
    linux 命令
    Linux中zip压缩和unzip解压缩命令详解
    Sublime Text2.0.2注册码
    Yii框架入门教程(博客教程、权威指南、类手册)
    Redis在PHP中的基本使用案例
    Yii MemCache 应用实例
    javascript数组操作汇总
    CSS进阶学习
    暑期周总结八(2018.8.27-2018.9.2)
    3D轮播图
  • 原文地址:https://www.cnblogs.com/111qqz/p/4693837.html
Copyright © 2011-2022 走看看