zoukankan      html  css  js  c++  java
  • 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);
    }
    


     

  • 相关阅读:
    Linux内核分析第七周学习笔记——Linux内核如何装载和启动一个可执行程序
    <深入理解计算机系统>第七章读书笔记
    Linux内核分析第六周学习笔记——分析Linux内核创建一个新进程的过程
    linux内核分析第3章&第18章读书笔记
    Linux内核分析第五周学习总结——分析system_call中断处理过程
    课本第五章读书笔记
    Linux内核分析第四周学习总结——系统调用的工作机制
    课本第一二章读书笔记
    20162328蔡文琛 实验二 树
    20162328蔡文琛 大二week07
  • 原文地址:https://www.cnblogs.com/jackwuyongxing/p/3366506.html
Copyright © 2011-2022 走看看