1. 程式人生 > >Codeforces Round #374 (Div. 2)-C. Journey DP

Codeforces Round #374 (Div. 2)-C. Journey DP

這一 i++ names 個人 push printf test queue 時間限制

C. Journey

題意:

在一個DAG(有向無環圖)中,問從1 到 n 點,在時間限制K下,最多能遊玩幾個地點,把遊玩的順序順便輸出。

思路:

感覺dp,一維不夠就加一維,我一開始有想到dp,但是只是一維的去推,推著感覺不正確。這次用dp[i][j],表示到j點已遊玩i個地點的最少時間。

DAG中一般要想到求拓撲序。即保證dp從左到右。

這題這個人直接兩重循環求dp,不知道為啥也是對的 ,確實是有道理,因為dp[ i - 1]這一行的所有情況對於 i 行都是確定的,且i行一定是在i-1行存在的基礎上推過來。

技術分享圖片
#include <iostream>
#include 
<cstdio> #include <algorithm> #include <cstring> #include <string> #include <vector> #include <map> #include <set> #include <queue> #include <list> #include <cstdlib> #include <iterator> #include <cmath> #include <iomanip> #include
<bitset> #include <cctype> #include <stack> using namespace std; #define lson (l , mid , rt << 1) #define rson (mid + 1 , r , rt << 1 | 1) #define debug(x) cerr << #x << " = " << x << "\n"; #define pb push_back #define pq priority_queue typedef
long long ll; typedef unsigned long long ull; typedef pair<ll ,ll > pll; typedef pair<int ,int > pii; #define fi first #define se second #define OKC ios::sync_with_stdio(false);cin.tie(0);cout.tie(0) #define FT(A,B,C) for(int A=B;A <= C;++A) //用來壓行 #define REP(i , j , k) for(int i = j ; i < k ; ++i) const ll mos = 0x7FFFFFFF; //2147483647 const ll nmos = 0x80000000; //-2147483648 const int inf = 0x3f3f3f3f; template<typename T> inline T read(T&x){ x=0;int f=0;char ch=getchar(); while (ch<0||ch>9) f|=(ch==-),ch=getchar(); while (ch>=0&&ch<=9) x=x*10+ch-0,ch=getchar(); return x=f?-x:x; } // #define _DEBUG; //*// #ifdef _DEBUG freopen("input", "r", stdin); // freopen("output.txt", "w", stdout); #endif /*-----------------show time----------------*/ const int maxn = 5009; int dp[maxn][maxn]; int pre[maxn][maxn]; int n,m,k; struct node { int u,v,w; }e[maxn]; int main(){ scanf("%d%d%d", &n, &m, &k); for(int i=1; i<=m; i++){ int u,v,w; scanf("%d%d%d", &u,&v,&w); e[i].v = v, e[i].w = w; e[i].u = u; } memset(dp,inf,sizeof(dp)); dp[1][1] = 0; for(int i=2; i<=n; i++){ for(int j=1; j<=m; j++){ int u = e[j].u,w = e[j].w; int v = e[j].v; if(dp[i][v] > dp[i-1][u] + w ){ dp[i][v] = dp[i-1][u] + w; pre[i][v] = u; } } } int id = -1; for(int i=n; i>=1;i--){ if(dp[i][n]<=k){ id = i; break; } } printf("%d\n",id); stack<int>s; int o = n; s.push(o); for(int i=id; i>=2; i--){ s.push(pre[i][o]); o = pre[i][o]; } while(!s.empty()){ printf("%d ",s.top()); s.pop(); } return 0; }
CF 721C

Codeforces Round #374 (Div. 2)-C. Journey DP