A10771 | Axel and Marston in Bitland
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A couple of friends, Axel and Marston are travelling across the country of Bitland. There are $n$ 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 $s$ of letters P (pedestrain road) and B (biking road). Then, the string  is appended to $s$ , where  stands for the string $s$ 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 $10^{18}$ roads in it, print -1 instead.
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 $s$ of letters P (pedestrain road) and B (biking road). Then, the string  is appended to $s$ , where  stands for the string $s$ 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 $10^{18}$ roads in it, print -1 instead.
输入格式
The first line contains two integers $n$ and $m$ ( $1<=n<=500$ , $0<=m<=2n^{2}$ ) — the number of towns and roads in Bitland respectively.
Next $m$ lines describe the roads. $i$ -th of these lines contains three integers $v_{i}$ , $u_{i}$ and $t_{i}$ ( $1<=v_{i},u_{i}<=n$ , $0<=t_{i}<=1$ ), where $v_{i}$ and $u_{i}$ denote start and destination towns indices of the $i$ -th road, and $t_{i}$ decribes the type of $i$ -th road (0 for a pedestrian road, 1 for a bike road). It is guaranteed that for each pair of distinct indices $i$ , $j$ such that $1<=i,j<=m$ , either $v_{i}≠v_{j}$ , or $u_{i}≠u_{j}$ , or $t_{i}≠t_{j}$ holds.
Next $m$ lines describe the roads. $i$ -th of these lines contains three integers $v_{i}$ , $u_{i}$ and $t_{i}$ ( $1<=v_{i},u_{i}<=n$ , $0<=t_{i}<=1$ ), where $v_{i}$ and $u_{i}$ denote start and destination towns indices of the $i$ -th road, and $t_{i}$ decribes the type of $i$ -th road (0 for a pedestrian road, 1 for a bike road). It is guaranteed that for each pair of distinct indices $i$ , $j$ such that $1<=i,j<=m$ , either $v_{i}≠v_{j}$ , or $u_{i}≠u_{j}$ , or $t_{i}≠t_{j}$ holds.
输出格式
If it is possible to find a route with length strictly greater than $10^{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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted