zoukankan      html  css  js  c++  java
  • (DP) 5D

    D. Mysterious Present
    time limit per test
    1 second
    memory limit per test
    64 megabytes
    input
    standard input
    output
    standard output

    Peter decided to wish happy birthday to his friend from Australia and send him a card. To make his present more mysterious, he decided to make a chain. Chain here is such a sequence of envelopes A = {a1,  a2,  ...,  an}, where the width and the height of the i-th envelope is strictly higher than the width and the height of the (i  -  1)-th envelope respectively. Chain size is the number of envelopes in the chain.

    Peter wants to make the chain of the maximum size from the envelopes he has, the chain should be such, that he'll be able to put a card into it. The card fits into the chain if its width and height is lower than the width and the height of the smallest envelope in the chain respectively. It's forbidden to turn the card and the envelopes.

    Peter has very many envelopes and very little time, this hard task is entrusted to you.

    Input

    The first line contains integers nwh (1  ≤ n ≤ 5000, 1 ≤ w,  h  ≤ 106) — amount of envelopes Peter has, the card width and height respectively. Then there follow n lines, each of them contains two integer numbers wi and hi — width and height of the i-th envelope (1 ≤ wi,  hi ≤ 106).

    Output

    In the first line print the maximum chain size. In the second line print the numbers of the envelopes (separated by space), forming the required chain, starting with the number of the smallest envelope. Remember, please, that the card should fit into the smallest envelope. If the chain of maximum size is not unique, print any of the answers.

    If the card does not fit into any of the envelopes, print number 0 in the single line.

    Sample test(s)
    input
    2 1 1
    2 2
    2 2
    output
    1
    1
    input
    3 3 3
    5 4
    12 11
    9 8
    output
    3
    1 3 2

    记忆化搜索一下,

    直接d[i],表示从i开始的最长不下降子序列。

    直接搜索AC

    注意要记录路径

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<cstdlib>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    int n,w[5010],v[5010],to[5010],d[5010];
    int dp(int t)
    {
         if(d[t]) return d[t];
         d[t]=1;
         for(int i=0;i<=n;i++)
         {
               if(w[i]>w[t]&&v[i]>v[t])
               {
                     if(dp(i)+1>d[t])
                     {
                           d[t]=d[i]+1;
                           to[t]=i;
                     }
               }
         }
         return d[t];
    }
    int main()
    {
          scanf("%d",&n);
          for(int i=0;i<=n;i++)
                scanf("%d%d",&w[i],&v[i]);
          memset(to,-1,sizeof(to));
          memset(d,0,sizeof(d));
          dp(0);
          d[0]--;
          printf("%d
    ",d[0]);
          for(int i=to[0];i!=-1;i=to[i])
                printf("%d ",i);
          return 0;
    }
    

      

  • 相关阅读:
    在oracle配置mysql数据库的dblink
    项目中非常有用并且常见的ES6语法
    原生js的容易忽略的相似点(二)
    原生js的容易忽略的相似点(一)
    json常用方法和本地存储方法
    vue-cli下面的config/index.js注解 webpack.base.conf.js注解
    vue跨域解决及打包
    js里面Object的一些方法
    vw+vh+rem响应式布局
    toast插件的简单封装(样式适用pc后台管理系统的场景)
  • 原文地址:https://www.cnblogs.com/a972290869/p/4250491.html
Copyright © 2011-2022 走看看