uva 10131 大象。

就是一个最长上升子序列而已。

状态转移的时候注意一下必须是严格递增的就好

#include
#include
#include
#include
#include
using namespace std;
struct P
{
    int i;
    int w;
    int s;
    P()
    {
        i=-1;
        s=0;
    }
    P(int a,int b,int c)
    {
        i=a;w=b;s=c;
    }
    bool operator <(const P &o)const
    {
        return w ele;
int res[2000];
int dp[2000];
int main()
{
    int tw,ts;
    for(int i=0;i<2000;i++)
        res[i]=i;
    int index=1;
    while(scanf("%d%d",&tw,&ts)!=EOF&&(tw!=0||ts!=0))
    {
        P tp(index++,tw,ts);
        ele.push_back(tp);
    }
    sort(ele.begin(),ele.end());
    memset(dp,0,sizeof(dp));

    for(int i=0;i S;

    while(res[max_i]!=max_i)
    {
        S.push(ele[max_i].i);
        max_i=res[max_i];
    }

    S.push(ele[max_i].i);

    while(!S.empty())
    {
        printf("%d\n",S.top());
        S.pop();
    }

}


你可能感兴趣的:(DP,ACM)