CF#(4D)Mysterious Present(DP)

来源:互联网 发布:淘宝内衣买家秀木耳 编辑:程序博客网 时间:2024/05/20 17:08

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 ≤ 50001 ≤ 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 12 22 2
output
11 
input
3 3 35 412 119 8
output
31 3 2 
dp[i]代表从第i个到达终点的最大数量
#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<limits.h>#include<cmath>typedef long long LL;using namespace std;const int maxn=5050;int dp[maxn],next[maxn];int n,cnt;struct node{    int w,h;}e[maxn];int dfs(int x){    if(dp[x]>0)   return dp[x];    for(int i=0;i<=n;i++)    {        if(e[i].w>e[x].w&&e[i].h>e[x].h)        {            int k=dfs(i);            if(k>=dp[x])            {                next[x]=i;                dp[x]=k+1;            }        }    }    return dp[x];}void print(int s){    if(next[s]==0)        return ;    else    {        if(cnt==0)            printf("%d",next[s]);        else            printf(" %d",next[s]);        cnt++;        print(next[s]);    }}int main(){    scanf("%d",&n);    for(int i=0;i<=n;i++)        scanf("%d%d",&e[i].w,&e[i].h);    memset(dp,0,sizeof(dp));    memset(next,0,sizeof(next));    int k=dfs(0);    cout<<k<<endl;    cnt=0;    print(0);    return 0;}


0 0
原创粉丝点击