CF780F.Axel and Marston in Bitland

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A couple of friends, Axel and Marston are travelling across the country of Bitland. There are nn towns in Bitland, with some pairs of towns connected by one-directional roads. Each road in Bitland is either a pedestrian road or a bike road. There can be multiple roads between any pair of towns, and may even be a road from a town to itself. However, no pair of roads shares the starting and the destination towns along with their types simultaneously.

The friends are now located in the town 1 and are planning the travel route. Axel enjoys walking, while Marston prefers biking. In order to choose a route diverse and equally interesting for both friends, they have agreed upon the following procedure for choosing the road types during the travel:

  • The route starts with a pedestrian route.
  • Suppose that a beginning of the route is written in a string ss of letters P (pedestrain road) and B (biking road). Then, the string is appended to ss , where stands for the string ss with each character changed to opposite (that is, all pedestrian roads changed to bike roads, and vice versa).

In the first few steps the route will look as follows: P, PB, PBBP, PBBPBPPB, PBBPBPPBBPPBPBBP, and so on.

After that the friends start travelling from the town 1 via Bitlandian roads, choosing the next road according to the next character of their route type each time. If it is impossible to choose the next road, the friends terminate their travel and fly home instead.

Help the friends to find the longest possible route that can be travelled along roads of Bitland according to the road types choosing procedure described above. If there is such a route with more than 101810^{18} roads in it, print -1 instead.

输入格式

The first line contains two integers nn and mm ( 1<=n<=5001<=n<=500 , 0<=m<=2n20<=m<=2n^{2} ) — the number of towns and roads in Bitland respectively.

Next mm lines describe the roads. ii -th of these lines contains three integers viv_{i} , uiu_{i} and tit_{i} ( 1<=vi,ui<=n1<=v_{i},u_{i}<=n , 0<=ti<=10<=t_{i}<=1 ), where viv_{i} and uiu_{i} denote start and destination towns indices of the ii -th road, and tit_{i} decribes the type of ii -th road (0 for a pedestrian road, 1 for a bike road). It is guaranteed that for each pair of distinct indices ii , jj such that 1<=i,j<=m1<=i,j<=m , either vivjv_{i}≠v_{j} , or uiuju_{i}≠u_{j} , or titjt_{i}≠t_{j} holds.

输出格式

If it is possible to find a route with length strictly greater than 101810^{18} , print -1. Otherwise, print the maximum length of a suitable path.

输入输出样例

  • 输入#1

    2 2
    1 2 0
    2 2 1
    

    输出#1

    3
    
  • 输入#2

    2 3
    1 2 0
    2 2 1
    2 2 0
    

    输出#2

    -1
    

说明/提示

In the first sample we can obtain a route of length 3 by travelling along the road 1 from town 1 to town 2, and then following the road 2 twice from town 2 to itself.

In the second sample we can obtain an arbitrarily long route by travelling the road 1 first, and then choosing road 2 or 3 depending on the necessary type.

首页