• (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;
    }
    

      

  • 相关阅读:
    Nuget~打包时添加powershell初始化脚本
    ELK系列~对fluentd参数的理解
    arclistsg独立单表模型文档列表
    arcpagelistarclist列表分页
    autochannel 指定栏目
    ini文件解析c库(iniparser)
    POJ 1386 有向图欧拉通路
    最好用的20个数据可视化工具(四)
    各种语音编码总结
    struts2讲义----二
  • 原文地址:https://www.cnblogs.com/a972290869/p/4250491.html
Copyright © 2020-2023  润新知