码迷,mamicode.com
首页 > 其他好文 > 详细

poj3783 Balls

时间:2018-04-07 22:47:04      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   str   namespace   set   out   ++   return   tco   leetcode   

思路:

经典的大楼丢鸡蛋dp,与leetcode375类似。
实现:

#include <iostream>
#include <cstring>
using namespace std;
const int INF = 0x3f3f3f3f;
const int MAXM = 1005, MAXB = 55;
int dp[MAXM][MAXB];
int main()
{
    int n, x, b, m;
    cin >> n;
    memset(dp, 0x3f, sizeof dp);
    for (int i = 0; i <= 50; i++) dp[0][i] = 0;
    for (int i = 0; i <= 1000; i++) dp[i][1] = i;
    for (int i = 1; i <= 1000; i++)
    {
        for (int k = 2; k <= 50; k++)
        {
            int ans = INF;
            for (int j = 1; j <= i; j++)
            {
                ans = min(ans, max(dp[j - 1][k - 1], dp[i - j][k]) + 1);
            }
            dp[i][k] = ans;
        }
    }
    while (n--)
    {
        cin >> x >> b >> m;
        cout << x << " " << dp[m][b] << endl;
    }
    return 0;
}

 

poj3783 Balls

标签:style   str   namespace   set   out   ++   return   tco   leetcode   

原文地址:https://www.cnblogs.com/wangyiming/p/8734877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!