现在的位置: 首页 > 综合 > 正文

UVA – 10131 Is Bigger Smarter?

2019年11月09日 ⁄ 综合 ⁄ 共 2775字 ⁄ 字号 评论关闭

DAG最长路……

#include<iostream>
#include<map>
#include<string>
#include<cstring>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
int tail;
int head[1010];
int dp[1010];
struct Edge
{
	int to,next;
}edge[1000000];
void add(int s,int e)
{
	edge[tail].to=e;
	edge[tail].next=head[s];
	head[s]=tail++;
}
int dfs(int s)
{
	int i;
	if(dp[s]!=0)
		return dp[s];
	dp[s]=1;
	for(i=head[s];i!=-1;i=edge[i].next)
		dp[s]=max(dp[s],dfs(edge[i].to)+1);
	return dp[s];
}
void out(int s)
{
	int i;
	cout<<s+1<<endl;
	for(i=head[s];i!=-1;i=edge[i].next)
	{
		if(dp[s]==dp[edge[i].to]+1)
		{
			out(edge[i].to);
			return;
		}
	}
}
int main()
{
	int i,j,n=0,s;
	pair<int,int>a[1010];
	while(cin>>a[n].first>>a[n].second)
		n++;
	tail=0;
	memset(head,-1,sizeof(head));
	for(i=0;i<n;i++)
		for(j=0;j<n;j++)
			if(a[i].first<a[j].first&&a[i].second>a[j].second)
				add(i,j);
	s=0;
	for(i=0;i<n;i++)
	{
		dfs(i);
		if(dp[i]>dp[s])
			s=i;
	}
	cout<<dp[s]<<endl;
	out(s);
}

Time Limit:3000MS   Memory Limit:Unknown   64bit IO Format:%lld & %llu

Status

Description

Download as PDF

Question 1: Is Bigger Smarter?

The Problem

Some people think that the bigger an elephant is, the smarter it is. To disprove this, you want to take the data on a collection of elephants and put as large a subset of this data as possible into a sequence so that the weights are increasing, but the IQ's
are decreasing.

The input will consist of data for a bunch of elephants, one elephant per line, terminated by the end-of-file. The data for a particular elephant will consist of a pair of integers: the first representing its size in kilograms and the second representing
its IQ in hundredths of IQ points. Both integers are between 1 and 10000. The data will contain information for at most 1000 elephants. Two elephants may have the same weight, the same IQ, or even the same weight and IQ.

Say that the numbers on the i-th data line are W[i] and S[i]. 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 an elephant). If these
n integers are a[1], a[2],..., a[n] then it must be the case that

   W[a[1]] < W[a[2]] < ... < W[a[n]]

and

   S[a[1]] > S[a[2]] > ... > S[a[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 IQs 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

Source

Root :: Competitive Programming 2: This increases the lower bound of Programming Contests. Again (Steven & Felix Halim) :: Problem Solving Paradigms :: Dynamic Programming ::

Longest Increasing Subsequence (LIS)

Root :: AOAPC I: Beginning Algorithm Contests (Rujia Liu) ::
Volume 5. Dynamic Programming

Root :: Competitive Programming 3: The New Lower Bound of Programming Contests (Steven & Felix Halim) :: Problem Solving Paradigms :: Dynamic Programming ::

Longest Increasing Subsequence (LIS)

Root :: Programming Challenges (Skiena & Revilla) ::
Chapter 11



Status

抱歉!评论已关闭.