zoukankan      html  css  js  c++  java
  • POJ 1609 Tiling Up Blocks

    Tiling Up Blocks
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 4675   Accepted: 1824

    Description

    Michael The Kid receives an interesting game set from his grandparent as his birthday gift. Inside the game set box, there are n tiling blocks and each block has a form as follows: 

    Each tiling block is associated with two parameters (l,m), meaning that the upper face of the block is packed with l protruding knobs on the left and m protruding knobs on the middle. Correspondingly, the bottom face of an (l,m)-block is carved with l caving dens on the left and m dens on the middle. 
    It is easily seen that an (l,m)-block can be tiled upon another (l,m)-block. However,this is not the only way for us to tile up the blocks. Actually, an (l,m)-block can be tiled upon another (l',m')-block if and only if l >= l' and m >= m'. 
    Now the puzzle that Michael wants to solve is to decide what is the tallest tiling blocks he can make out of the given n blocks within his game box. In other words, you are given a collection of n blocks B = {b1, b2, . . . , bn} and each block bi is associated with two parameters (li,mi). The objective of the problem is to decide the number of tallest tiling blocks made from B. 

    Input

    Several sets of tiling blocks. The inputs are just a list of integers.For each set of tiling blocks, the first integer n represents the number of blocks within the game box. Following n, there will be n lines specifying parameters of blocks in B; each line contains exactly two integers, representing left and middle parameters of the i-th block, namely, li and mi. In other words, a game box is just a collection of n blocks B = {b1, b2, . . . , bn} and each block bi is associated with two parameters (li,mi). 
    Note that n can be as large as 10000 and li and mi are in the range from 1 to 100. 
    An integer n = 0 (zero) signifies the end of input.

    Output

    For each set of tiling blocks B, output the number of the tallest tiling blocks can be made out of B. Output a single star '*' to signify the end of 
    outputs.

    Sample Input

    3
    3 2
    1 1
    2 3
    5
    4 2
    2 4
    3 3
    1 1
    5 5
    0

    Sample Output

    2
    3
    *
    题目大意:给定n个砖块的长和宽,只有当x2>=x1&&y2>=y1时 n2可以放在n1上 问最高能落多高。
    解题方法:求最大不上升子序列,用动态规划。
    #include <stdio.h>
    #include <iostream>
    #include <string.h>
    using namespace std;
    
    int main()
    {
        int w[105][105];
        int dp[105][105];
        int n;
        while(scanf("%d", &n) != EOF)
        {
            if (n == 0)
            {
                printf("*
    ");
                break;
            }
            int a, b;
            memset(w, 0, sizeof(w));
            memset(dp, 0, sizeof(dp));
            for (int i = 1; i <= n; i++)
            {
                scanf("%d%d", &a, &b);
                w[a][b]++;
            }
            for (int i = 1; i <= 100; i++)
            {
                for (int j = 1; j <= 100; j++)
                {
                    dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]) + w[i][j];
                }
            }
            printf("%d
    ", dp[100][100]);
        }
        return 0;
    }
     
  • 相关阅读:
    display: flex
    TTStand --Variant的应用
    跨域
    HTTP 响应状态代码
    SQL Server 2017 Developer and Express
    WPF 中 通过点击ListBox中的元素自动选中一整项
    C#计算屏幕的物理宽和高
    C#常用设计模式
    EntityFrameworkCore之工作单元的封装
    内存包装类 Memory 和 Span 相关类型
  • 原文地址:https://www.cnblogs.com/lzmfywz/p/3210882.html
Copyright © 2011-2022 走看看