A13703 | Egor in the Republic of Dagestan
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Egor is a famous Russian singer, rapper, actor and blogger, and finally he decided to give a concert in the sunny Republic of Dagestan.
There are $n$ cities in the republic, some of them are connected by $m$ directed roads without any additional conditions. In other words, road system of Dagestan represents an arbitrary directed graph. Egor will arrive to the city $1$ , travel to the city $n$ by roads along some path, give a concert and fly away.
As any famous artist, Egor has lots of haters and too annoying fans, so he can travel only by safe roads. There are two types of the roads in Dagestan, black and white: black roads are safe at night only, and white roads — in the morning. Before the trip Egor's manager's going to make a schedule: for each city he'll specify it's color, black or white, and then if during the trip they visit some city, the only time they can leave it is determined by the city's color: night, if it's black, and morning, if it's white. After creating the schedule Egor chooses an available path from $1$ to $n$ , and for security reasons it has to be the shortest possible.
Egor's manager likes Dagestan very much and wants to stay here as long as possible, so he asks you to make such schedule that there would be no path from $1$ to $n$ or the shortest path's length would be greatest possible.
A path is one city or a sequence of roads such that for every road (excluding the first one) the city this road goes from is equal to the city previous road goes into. Egor can move only along paths consisting of safe roads only.
The path length is equal to the number of roads in it. The shortest path in a graph is a path with smallest length.
There are $n$ cities in the republic, some of them are connected by $m$ directed roads without any additional conditions. In other words, road system of Dagestan represents an arbitrary directed graph. Egor will arrive to the city $1$ , travel to the city $n$ by roads along some path, give a concert and fly away.
As any famous artist, Egor has lots of haters and too annoying fans, so he can travel only by safe roads. There are two types of the roads in Dagestan, black and white: black roads are safe at night only, and white roads — in the morning. Before the trip Egor's manager's going to make a schedule: for each city he'll specify it's color, black or white, and then if during the trip they visit some city, the only time they can leave it is determined by the city's color: night, if it's black, and morning, if it's white. After creating the schedule Egor chooses an available path from $1$ to $n$ , and for security reasons it has to be the shortest possible.
Egor's manager likes Dagestan very much and wants to stay here as long as possible, so he asks you to make such schedule that there would be no path from $1$ to $n$ or the shortest path's length would be greatest possible.
A path is one city or a sequence of roads such that for every road (excluding the first one) the city this road goes from is equal to the city previous road goes into. Egor can move only along paths consisting of safe roads only.
The path length is equal to the number of roads in it. The shortest path in a graph is a path with smallest length.
输入格式
The first line contains two integers $n$ , $m$ ( $1 \leq n \leq 500000$ , $0 \leq m \leq 500000$ ) — the number of cities and the number of roads.
The $i$ -th of next $m$ lines contains three integers — $u_i$ , $v_i$ and $t_i$ ( $1 \leq u_i, v_i \leq n$ , $t_i \in \{0, 1\}$ ) — numbers of cities connected by road and its type, respectively ( $0$ — night road, $1$ — morning road).
The $i$ -th of next $m$ lines contains three integers — $u_i$ , $v_i$ and $t_i$ ( $1 \leq u_i, v_i \leq n$ , $t_i \in \{0, 1\}$ ) — numbers of cities connected by road and its type, respectively ( $0$ — night road, $1$ — morning road).
输出格式
In the first line output the length of the desired path (or $-1$ , if it's possible to choose such schedule that there's no path from $1$ to $n$ ).
In the second line output the desired schedule — a string of $n$ digits, where $i$ -th digit is $0$ , if the $i$ -th city is a night one, and $1$ if it's a morning one.
If there are multiple answers, print any.
In the second line output the desired schedule — a string of $n$ digits, where $i$ -th digit is $0$ , if the $i$ -th city is a night one, and $1$ if it's a morning one.
If there are multiple answers, print any.
输入输出样例
输入 #1
3 4 1 2 0 1 3 1 2 3 0 2 3 1
输出 #1
2 011
输入 #2
4 8 1 1 0 1 3 0 1 3 1 3 2 0 2 1 0 3 4 1 2 4 0 2 4 1
输出 #2
3 1101
输入 #3
5 10 1 2 0 1 3 1 1 4 0 2 3 0 2 3 1 2 5 0 3 4 0 3 4 1 4 2 1 4 5 0
输出 #3
-1 11111
For the first sample, if we paint city $1$ white, the shortest path is $1 \rightarrow 3$ . Otherwise, it's $1 \rightarrow 2 \rightarrow 3$ regardless of other cities' colors.
For the second sample, we should paint city $3$ black, and there are both black and white roads going from $2$ to $4$ . Note that there can be a road connecting a city with itself.
For the second sample, we should paint city $3$ black, and there are both black and white roads going from $2$ to $4$ . Note that there can be a road connecting a city with itself.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted