程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> uva 10131 Is Bigger Smarter? dag 最長路 加路徑還原

uva 10131 Is Bigger Smarter? dag 最長路 加路徑還原

編輯:C++入門知識

uva 10131 Is Bigger Smarter? dag 最長路 加路徑還原


#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define INF 100000000

using namespace std;
struct node{
	int x,y;
};

node a[1005];
int n;
int ma[1005][1005];
int dp[1005];


void print(int max,int q){
	if(max == 1){
		printf("%d\n",q+1);
		return ;
	}
	printf("%d\n",q+1);
	for(int i = 0;i < n;i++){
		if(ma[q][i] && dp[i] == max-1){
			print(max-1,i);
			break;
		}
	}
	
}
int fun(node &x,node &y){
	if(x.x < y.x && x.y > y.y) return 1;
	return 0;
}
int dfs(int cur){
	int& ret = dp[cur];
	if(ret > 0) return ret;
	ret = 1;
	for(int i = 0;i < n;i++){
		if(ma[cur][i]){
			ret = max(dfs(i)+1,ret);
		}
	}
	return ret;
}
int main(){
	while(scanf("%d%d",&a[n].x,&a[n].y)!=EOF) n++;
	memset(ma,0,sizeof(ma));
	
	
	for(int i = 0;i < n;i++){
		for(int j = 0;j < n;j++){
			if(fun(a[i],a[j]) > 0){
				ma[i][j] = 1;
			}
		}
	}	
	
	for(int i = 0;i < n;i++){
		dfs(i);	
	}
	
	int maxn;
	int max = -1;
	for(int i = 0;i < n;i++){
		if(dp[i] > max){
			maxn = i;
			max = dp[i];
		}
	} 
	cout << max << endl;
	print(max,maxn);
	return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved