5111: Flights for Regular Customers

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:1 通过:1

题目描述

D. Flights for Regular Customers
time limit per test
4 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
In the country there are exactly n cities numbered with positive integers from 1 to n. In each city there is an airport is located.
Also, there is the only one airline, which makes m flights. Unfortunately, to use them, you need to be a regular customer of this company, namely, you have the opportunity to enjoy flight i from city ai to city bi only if you have already made at least di flights before that.
Please note that flight i flies exactly from city ai to city bi. It can not be used to fly from city bi to city ai. An interesting fact is that there may possibly be recreational flights with a beautiful view of the sky, which begin and end in the same city.
You need to get from city 1 to city n. Unfortunately, you've never traveled by plane before. What minimum number of flights you have to perform in order to get to city n?
Note that the same flight can be used multiple times.
Input
The first line contains two integers, n and m (2≤n≤150, 1≤m≤150) − the number of cities in the country and the number of flights the company provides.
Next m lines contain numbers ai, bi, di (1≤ai,bin, 0≤di≤109), representing flight number i from city ai to city bi, accessible to only the clients who have made at least di flights.
Output
Print "Impossible" (without the quotes), if it is impossible to get from city 1 to city n using the airways.
But if there is at least one way, print a single integer − the minimum number of flights you need to make to get to the destination point.
Examples
Input
3 2
1 2 0
2 3 1
Output
2
Input
2 1
1 2 100500
Output
Impossible
Input
3 3
2 1 0
2 3 6
1 2 0
Output
8

输入样例 复制


输出样例 复制