博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(最长上升子序列 并记录过程)FatMouse's Speed -- hdu -- 1160
阅读量:6975 次
发布时间:2019-06-27

本文共 2733 字,大约阅读时间需要 9 分钟。

 

 

FatMouse's Speed

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 12338    Accepted Submission(s): 5405
Special Judge

Problem Description
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 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
 

 

Sample Output
4
4
5
9
7

 

 

#include
#include
#include
#include
#include
using namespace std;#define N 10005#define oo 0x3f3f3f3f/**感觉有点用导弹防御的思想每次记录从 0 到 i 的最长个数并用 pre[i] 记录 i 点是从哪个点过来的**//// number 是记录它原来的位置struct node{ int w, s, number;}a[N];/// pre[] 是个很好的记录方式,可以记录它的是从哪个过来的(它的上一步)int dp[N], pre[N];/// 先按 w 从小到大排, 再按 s 从大到小排int cmp(node n1, node n2){ if(n1.w!=n2.w) return n1.w < n2.w; return n1.s > n2.s;}int main(){ int i=1, j, n; memset(a, 0, sizeof(a)); memset(dp, 0, sizeof(dp)); while(scanf("%d%d", &a[i].w, &a[i].s)!=EOF) { a[i].number = i; i++; } n=i; sort(a+1, a+i+1, cmp);/** for(i=1; i
Max) { Max = dp[i]; index = i; } } printf("%d\n", Max); i=0; int b[N]={ 0}; while(pre[index]!=index) { b[i++] = a[index].number; index = pre[index]; } printf("%d\n", a[index].number); for(j=i-1; j>=0; j--) printf("%d\n", b[j]); return 0;}
View Code

 

转载于:https://www.cnblogs.com/YY56/p/4864945.html

你可能感兴趣的文章
Vmware虚拟机的复制后无法使用的问题和解决
查看>>
好程序员web前端技术分享媒体查询
查看>>
开博前的话
查看>>
【老孙随笔】注意啦,精神集中点儿!
查看>>
nagios监控shadow文件
查看>>
用Kotlin在IntelliJ Idea中无法生成 spring-configuration-metadata.json 文件
查看>>
企业数据库合规的最佳实践
查看>>
tar自动打包指定文件夹中的文件到指定目录
查看>>
修改Vim配色方案
查看>>
awk (一)
查看>>
C语言:在屏幕上输出信息
查看>>
C语言存储类关键字
查看>>
万能删除代码
查看>>
基于kryo序列化方案的memcached-session-manager多memcached...
查看>>
group by 查找订单的最新状态 join
查看>>
Ext Scheduler Web资源甘特图控件
查看>>
linux下查看nginx,apache,mysql,php的编译参数
查看>>
mongodb主从设置,capped collections等常用命令集合
查看>>
菜鸟学***——菜鸟的旅程
查看>>
物理层
查看>>