codeforces 721C. Journey(dp+ 토폴로지)
4281 단어 보통토폴로지 정렬CodeForces
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 from1 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 nocyclic 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 Ttime 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개의 단방향 변으로 그림을 만들고 1에서 n까지 가는 데 걸리는 시간이 T를 초과하지 않고 최대 몇 개의 도시를 지나갈 수 있느냐고 묻는다.
아이디어:
처음에 저는 최단길로 했습니다. cnt[x]로 x가 지나간 도시를 표시했고 dis[x]로 x가 cnt[x]개 도시를 지나갈 때 가장 짧은 시간을 표시했습니다. 결과는 업데이트할 때 오류가 발생했습니다.
정확한 방법은 dp+토폴로지,tim[x][y]로 도시 x에 도착하여 y개 도시를 지나는 최소 시간을 표시하고, nxt[x][y]로 x의 이전 도시를 표시한다.
#include
using namespace std;
const int N=1e5+10;
const int MAXN=5010;
const int INF=0x3f3f3f3f;
struct node
{
int v, cost;
node(int vi=0,int ci=0):v(vi),cost(ci) {}
};
vectorvec[MAXN], vv[MAXN];
void addedge(int u,int v,int w)
{
vec[u].push_back(node(v,w));
}
int du[MAXN], nxt[MAXN][MAXN], tim[MAXN][MAXN];
queueq;
void solve(int s, int e, int lim){
while(!q.empty()) q.pop();
memset(nxt, 0, sizeof(nxt));
memset(tim, 0x3f3f3f3f, sizeof(tim));
for(int i=s; i<=e; i++){
if(!du[i]) q.push(i);
}
for(int i=0; i<=e; i++) tim[1][i] = 0;
while(!q.empty()){
int top = q.front();q.pop();
int len = (int)vec[top].size();
if(top == 1){
for(int i=0; i lim) continue;
if(tim[top][j-1] + w >= tim[v][j]) continue;
tim[v][j] = tim[top][j-1] + w;
nxt[v][j] = top;
}
du[v]--;
if(!du[v]) q.push(v);
}
}
}
int arr[MAXN];
int main(){
int n, m, T;
scanf("%d%d%d", &n, &m, &T);
int u, v, w;
memset(du, 0, sizeof(du));
for(int i=0; i=0; i--){
if(i == 0) printf("%d
", arr[i]);
else printf("%d ", arr[i]);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDU 5550dp + 접두어 및 최적화한 빌딩에 n층이 있는데 층마다 두 종류의 사람이 있다. 하나는 좋아하는 공, 하나는 수영을 좋아한다. 지금 너는 층마다 구장을 개설하든지 수영장을 개설하든지 분배가 끝난 후에 공을 치는 사람은 구장에 가야 한다. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.