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

Uva 10131-Is Bigger Smarter?(DP)

編輯:C++入門知識

Uva 10131-Is Bigger Smarter?(DP)


題目鏈接:點擊打開鏈接

DAG(有向無環圖)上的最長路+打印路徑 建圖很簡單,對於兩點 a b, 能夠由a到b的條件是w[a]s[b] 注意是有向圖。 設dp[i] 為以i為起點的最長路的長度,dp[i]= max(dp[i],dp[j]+1) 枚舉j (j是和i相連的點)
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define maxn 1010
#define _ll __int64
#define ll long long
#define INF 0x3f3f3f3f
#define Mod 1000000007
#define pp pair
#define ull unsigned long long
using namespace std;
int p,w[maxn],s[maxn],dp[maxn];
bool ma[maxn][maxn];
void build()
{
	memset(ma,0,sizeof(ma));
	for(int i=1;is[j])
				ma[i][j]=1;
			else if(w[j]s[i])
				ma[j][i]=1;
		}
	}
}
int dfs(int x)
{
	int& ans=dp[x];
	if(ans>0) return ans;
	ans=1;
	for(int i=1;i

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