NOIP难度 零件分组 stick 题解&代码

DP= =双关键字排序然后取最大的啦【呸哪有双关键字了…明明只是分情况讨论取最大的嘛= =

#include
#include
#include
using namespace std;
int n,w[1005],l[1005],p[1005],dp[1005],ans1,ans2;
bool cmpl(int a,int b)
{
    if(l[a]return true;
    if(l[a]==l[b])return w[a]return false;
}
bool cmpw(int a,int b)
{
    if(w[a]return true;
    if(w[a]==w[b])return l[a]return false;
}
int main(void)
{
    cin>>n;
    for(int i=0;icin>>l[i]>>w[i];
        p[i]=i;
    }
    sort(p,p+n,cmpl);
    dp[1]=w[p[0]];
    dp[0]=10000;
    for(int i=1;ifor(int j=n;j>0;j--)
        if(dp[j-1]>w[p[i]])
            dp[j]=max(w[p[i]],dp[j]);
    for(int j=n;!dp[j];j--)
        ans1=j;
    memset(dp,0,sizeof(dp));
    sort(p,p+n,cmpw);
    dp[1]=l[p[0]];
    dp[0]=10000;
    for(int i=1;ifor(int j=n;j>0;j--)
        if(dp[j-1]>l[p[i]])
            dp[j]=max(l[p[i]],dp[j]);
    for(int j=n;!dp[j];j--)
        ans2=j;
    cout<<(ans11<return 0;
}

你可能感兴趣的:(DP)