【暴力DP+思维】Codeforces839 C - Journey

C - Journey

 

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
给你n个节点m条路k的费用

问你从1走到n最多能走几个城市,花费<=k

dp[i][j]:走过了i个景点,到城市 j 的最小花费

因为n,m<=5000,直接暴力就行

dp[i][v]=min(dp[i][v],dp[i-1][u]+w)

记得开int!!!

不然空间超

 

#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int maxn=5005;
struct node
{
    int v;
    int w;
    node(int _v,int _w)
    {
        v=_v,w=_w;
    }
};
int dp[maxn][maxn]; //到达j城市 游览了i个城市的最小花费
vector <node> G[maxn];
const int INF=1e9+7;
int ans[maxn][maxn];
int path[maxn];
int ans1=0;
int n,m,u,v;
int k,w;

void print()
{
    path[1]=n;
    int t=n,num=ans1,tot=1;
    while(tot<ans1)
    {
        t=ans[num--][t];
        path[++tot]=t;
    }
    for(int i=ans1;i>=1;i--)
    {
        printf("%d%c",path[i],i==1?'\n':' ');
    }

}

int main()
{

    scanf("%d%d%d",&n,&m,&k);
    for(int i=1;i<=m;i++)
    {
        scanf("%d%d%d",&u,&v,&w);
        G[u].push_back(node(v,w));
    }

    for(int i=0;i<=n;i++)
    {
        for(int j=0;j<=n;j++)
            dp[i][j]=INF;
    }
    dp[1][1]=0;

    for(int i=2;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            for(auto x:G[j])
            {
                u=j,v=x.v,w=x.w;
                if(dp[i][v]>dp[i-1][u]+w)
                {
                    dp[i][v]=dp[i-1][u]+w;
                    ans[i][v]=u;
                }
            }
        }
    }


    for(int i=n;i>=1;i--)
    {
        if(dp[i][n]<=k)
        {
            ans1=i;
            break;
        }
    }

    cout<<ans1<<endl;

    print();


    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用\[1\]中提到了一种树形动态规划的方法来解决CodeForces - 982C问题。在这个问题中,subtree指的是子连通块,而不是子树。为了使cnt_white - cnt_black尽可能大,可以使用两次树形动态规划来求解。第一次是自底向上的过程,维护一个dp数组,表示以每个节点为根的子树中的最大连通块。第二次是自顶向下的过程,处理自底向上过程中无法包含的树链所代表的子树。在第二次遍历中,需要维护一个sum变量,用于存储树链所代表的子树的贡献。根据ans\[u\]的正负,决定是否能对相邻的子节点做出贡献。如果ans\[u\]为正,则减去dp\[v\]就是树链所代表的子树的权值。最终,ans\[u\]代表包含节点u在内的子连通块的最大权值。\[1\] 问题: CodeForces - 982C 树形DP是什么问题?如何解决? 回答: CodeForces - 982C是一个树形动态规划问题。在这个问题中,需要求解子连通块的最大权值和,使得cnt_white - cnt_black尽可能大。解决这个问题的方法是使用两次树形动态规划。第一次是自底向上的过程,维护一个dp数组,表示以每个节点为根的子树中的最大连通块。第二次是自顶向下的过程,处理自底向上过程中无法包含的树链所代表的子树。在第二次遍历中,需要维护一个sum变量,用于存储树链所代表的子树的贡献。根据ans\[u\]的正负,决定是否能对相邻的子节点做出贡献。最终,ans\[u\]代表包含节点u在内的子连通块的最大权值。\[1\] #### 引用[.reference_title] - *1* *2* [CodeForces - 1324F Maximum White Subtree(树形dp)](https://blog.csdn.net/qq_45458915/article/details/104831678)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值