http://codeforces.com/contest/721/problem/C Journey(DAG上的dp)

Journey
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Recently Irina arrived to one of the most famous cities of Berland — the Berlatov city. There are n showplaces in the city, numbered from 1 to n, and some of them are connected by one-directional roads. The roads in Berlatov are designed in a way such that there are no cyclic routes between showplaces.

Initially Irina stands at the showplace 1, and the endpoint of her journey is the showplace n. Naturally, Irina wants to visit as much showplaces as she can during her journey. However, Irina's stay in Berlatov is limited and she can't be there for more than T time units.

Help Irina determine how many showplaces she may visit during her journey from showplace 1 to showplace n within a time not exceeding T. It is guaranteed that there is at least one route from showplace 1 to showplace n such that Irina will spend no more than T time units passing it.

Input

The first line of the input contains three integers n, m and T (2 ≤ n ≤ 5000,  1 ≤ m ≤ 5000,  1 ≤ T ≤ 109) — the number of showplaces, the number of roads between them and the time of Irina's stay in Berlatov respectively.

The next m lines describes roads in Berlatov. i-th of them contains 3 integers ui, vi, ti (1 ≤ ui, vi ≤ n, ui ≠ vi, 1 ≤ ti ≤ 109), meaning that there is a road starting from showplace ui and leading to showplace vi, and Irina spends ti time units to pass it. It is guaranteed that the roads do not form cyclic routes.

It is guaranteed, that there is at most one road between each pair of showplaces.

Output

Print the single integer k (2 ≤ k ≤ n) — the maximum number of showplaces that Irina can visit during her journey from showplace 1 to showplace n within time not exceeding T, in the first line.

Print k distinct integers in the second line — indices of showplaces that Irina will visit on her route, in the order of encountering them.

If there are multiple answers, print any of them.

Examples
Input
4 3 13
1 2 5
2 3 7
2 4 8
Output
3
1 2 4 
Input
6 6 7
1 2 2
1 3 3
3 6 3
2 4 2
4 6 2
6 5 1
Output
4
1 2 4 6 
Input
5 5 6
1 3 3
3 5 3
1 2 2
2 4 3
4 5 2
Output
3
1 3 5 


【題意】

  DAG圖,5000個點,5000條邊

 讓你求從1到n的路徑長度不超過T中經過點數最多的一條 


 解題思路:

 int  dp[5005][5005];    //f[i][j]表示當前在點i,接下來經過j個點(包括自己)到n點的最小距離

 int  nex[5005][5005];  //nxt[i][j]表示當前在點i,接下來經過j個點(包括自己)到n點的後繼


 然後我們對每個點都求出其dp[]和nex[]

 注意,這個dfs採取記憶化的方式,起點是n,終點爲1這是我寫的第一道樹形 dp ,不是太難,不懂的可以好好琢磨下這道題,挺好的。

#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<vector>
using namespace std;
const int maxn=5005;
vector< pair<int,int> > a[maxn];
int dp[maxn][maxn];
int nex[maxn][maxn];
int vis[maxn];
int n,m,t;
void dfs(int x)
{
    if(vis[x]==1) return;
    vis[x]=1;
    vector< pair<int,int> >::iterator it;
    for(it=a[x].begin(); it!=a[x].end(); ++it)
    {
        dfs(it->first);
        for(int i=2;i<=n;i++){
            int dis=dp[it->first][i-1] + it->second;
            if(dis<dp[x][i]){
                dp[x][i]=dis;
                nex[x][i]=it->first;
            }
        }
    }
}
void print()
{
    for(int i=n;;--i){
        if(dp[1][i]<=t){
            printf("%d\n",i);
            int x=1;
            printf("%d",x);
            while(x!=n){
                x=nex[x][i];
                printf(" %d",x);
                i--;
            }
            printf("\n");
            break;
        }
    }
}
int main()
{
    while(~scanf("%d %d %d",&n,&m,&t))
    {
        int x,y,z;
        for(int i=0;i<m;i++){
            scanf("%d %d %d",&x,&y,&z);
            if(x==n || y==1) continue;
            a[x].push_back(make_pair(y,z));
        }
        memset(vis,0,sizeof(vis));
        memset(dp,0x3f,sizeof(dp));
        memset(nex,0,sizeof(nex));
        dp[n][1]=0;
        vis[n]=1;
        nex[1][1]=n;
        dfs(1);
        print();
    }
    return 0;
}










發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章