• ZOJ Problem Set


    ZOJ Problem Set - 1108
    FatMouse's Speed

    Time Limit: 2 Seconds                                     Memory Limit: 65536 KB                                                     Special Judge                            

    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 Specification

    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 Specification

    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 m[1], m[2],..., m[n] then it must be the case that

       W[m[1]] < W[m[2]] < ... < W[m[n]]
    
    and
       S[m[1]] > S[m[2]] > ... > S[m[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 1300
    6000 2100
    500 2000
    1000 4000
    1100 3000
    6000 2000
    8000 1400
    6000 1200
    2000 1900
    

    Output for Sample Input

    4
    4
    5
    9
    7
    

    这是个用动态规划法求单调子序列的题目

    AC代码:

    #include<iostream>
    #include<stdio.h>
    #include<algorithm>
    #include<string.h>
    using namespace std;
    struct Rat{
    	int id,w,s;
    };
    bool cmp(Rat a,Rat b)
    {
    	if(a.w!=b.w)
    	{
    		return a.w<b.w;
    	}
    	else 
    	{
    		return a.s>b.s;
    	}
    }
    void path(int *p,Rat *rat,int start)
    {
    	if(start==-1)
    	   return;
    	path(p,rat,p[start]);
    	cout<<rat[start].id<<endl;
    }
    int main()
    {
    	int k=0;
    	int w,s;
    	Rat rat[1100];
    	int c[1100];
    	int p[1100];
    	memset(c,0,sizeof(c));
    	memset(p,-1,sizeof(p));
    	while(cin>>w>>s)
    	{
    		rat[k].id=k+1;
    		rat[k].w=w;
    		rat[k].s=s;
    		k++;
    	}
    	sort(rat,rat+k+1,cmp);
    	c[0]=1;
    	for(int i=1;i<=k;i++)
    	{
    		for(int j=0;j<i;j++)
    		{
    			if(rat[j].w<rat[i].w&&rat[j].s>rat[i].s)
    			{
    			   if(c[i]<c[j])
    			   {
    			   	 c[i]=c[j];
    			   	 p[i]=j;
    			   }
    			}
    		}
    		c[i]++;
    	}
    	int max=0;
    	int start;
    	for(int i=0;i<=k;i++)
    	{
    		if(max<c[i])
    		{
    			max=c[i];
    			start=i;
    		}
    	}
    	cout<<max<<endl;
    	path(p,rat,start);
    }
    


     

  • 相关阅读:
    Informix数据表结构分析资料整理之字段类型说明和查询SQL语句
    Informix数据表结构分析资料整理之约束查询代码
    C#调用C++的DLL搜集整理的所有数据类型转换方式
    CentOS 6.3安装Puppet3.x
    linux的initrd.img的解压和打包
    Linux时间修改CentOS/Redhat
    Linux内核升级Broadcom网卡问题(bnx2)
    CentOS5.8下编译安装3.X版本内核
    使用KVM创建Windows系统镜像
    CentOS6.3安装RTL8188CE无线网卡驱动
  • 原文地址:https://www.cnblogs.com/jackwuyongxing/p/3366506.html
Copyright © 2020-2023  润新知