FatMouse's Speed

来源:互联网 发布:百度钱包贷款 知乎 编辑:程序博客网 时间:2024/05/05 08:50


FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as large a subset of this data as possible into a sequence so that the weights are increasing, but the speeds are decreasing. 
Input
Input contains data for a bunch of mice, one mouse per line, terminated by end of file. 

The data for a particular mouse will consist of a pair of integers: the first representing its size in grams and the second representing its speed in centimeters per second. Both integers are between 1 and 10000. The data in each test case will contain information for at most 1000 mice. 

Two mice may have the same weight, the same speed, or even the same weight and speed. 
Output
Your program should output a sequence of lines of data; the first line should contain a number n; the remaining n lines should each contain a single positive integer (each one representing a mouse). If these n integers are m11, m22,..., mnnthen it must be the case that 

Wm[1m[1] < Wm[2m[2] < ... < Wm[nm[n

and 

Sm[1m[1] > Sm[2m[2] > ... > Sm[nm[n

In order for the answer to be correct, n should be as large as possible. 
All inequalities are strict: weights must be strictly increasing, and speeds must be strictly decreasing. There may be many correct outputs for a given input, your program only needs to find one. 
Sample Input
6008 13006000 2100500 20001000 40001100 30006000 20008000 14006000 12002000 1900
Sample Output
44597


做法,简单线性dp,排个序,然后就像跑最长上升子序列一样就可以了。

#include <bits/stdc++.h>using namespace std;const int MAXN = 1e3+7;const int mod = 1e9+7;int n;struct node{    int w,s;    int id;    bool operator < (const node &a)const    {        if(w != a.w)return w < a.w;        else return s < a.s;    }} p[MAXN];struct dp{    int num;    int now,pre;} dp[MAXN];int main(){    n = 1;    while(~scanf("%d%d",&p[n].w,&p[n].s))    {        p[n].id = n;        n++;    }    sort(p+1,p+1+n);    for(int i = 1 ; i <= n ; ++i)    {        int MAX = 0,pos = 0;        for(int j = 1 ; j < i ; ++j)        {            if(p[i].w > p[j].w && p[i].s < p[j].s && dp[j].num > MAX)            {                MAX = dp[j].num;                pos = j;            }        }        dp[i].now = i;        dp[i].pre = pos;        dp[i].num = MAX + 1;    }    int MAX = 0,pos = 0;    for(int i = 1 ; i <= n ; ++i)if(dp[i].num > MAX)    {        MAX = dp[i].num;        pos = i;    }    printf("%d\n",MAX);    stack<int>S;    int e = pos;    while(e)    {        S.push(e);        e = dp[e].pre;    }    while(!S.empty())    {        printf("%d\n",p[S.top()].id);        S.pop();    }    return 0;}






原创粉丝点击