A15766 | The Game of the Century
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The time has finally come, MKnez and Baltic are to host The Game of the Century. For that purpose, they built a village to lodge its participants.
The village has the shape of an equilateral triangle delimited by three roads of length $n$ . It is cut into $n^2$ smaller equilateral triangles, of side length $1$ , by $3n-3$ additional roads which run parallel to the sides. See the figure for $n=3$ . Each of the $3n$ roads is made of multiple (possibly $1$ ) road segments of length $1$ which connect adjacent intersections.
The direction has already been chosen for each of the $3n$ roads (so, for each road, the same direction is assigned to all its road segments). Traffic can only go in the specified directions (i. e. the roads are monodirectional).
You are tasked with making adjustments to the traffic plan so that from each intersection it is possible to reach every other intersection. Specifically, you can invert the traffic direction of any number of road segments of length $1$ . What is the minimal number of road segments for which you need to invert the traffic direction?
The village has the shape of an equilateral triangle delimited by three roads of length $n$ . It is cut into $n^2$ smaller equilateral triangles, of side length $1$ , by $3n-3$ additional roads which run parallel to the sides. See the figure for $n=3$ . Each of the $3n$ roads is made of multiple (possibly $1$ ) road segments of length $1$ which connect adjacent intersections.
The direction has already been chosen for each of the $3n$ roads (so, for each road, the same direction is assigned to all its road segments). Traffic can only go in the specified directions (i. e. the roads are monodirectional).
You are tasked with making adjustments to the traffic plan so that from each intersection it is possible to reach every other intersection. Specifically, you can invert the traffic direction of any number of road segments of length $1$ . What is the minimal number of road segments for which you need to invert the traffic direction?
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \leq t \leq 10\,000$ ). The description of the test cases follows.
The first line of each test case contains a positive integer $n$ ( $1\leq n\leq 10^5$ ) — the size of the triangular village's sides.
Three lines follow, each containing a binary string of length $n$ which describes the traffic directions of the roads.
The $i$ -th of the following three lines contains a binary string $s_i$ of length $n$ representing the direction of each road parallel to the road segment denoted by $i$ in the picture above. In particular, the $j$ -th character of $s_i$ is "1" if the $j$ -th shortest road (parallel to the road segment denoted by $i$ in the picture) has the same direction of the road segment denoted by $i$ in the picture, while it is "0" if it has the opposite direction. So the first character of $s_i$ describes the direction of the road containing only $1$ road segment, while the last character describes the direction of the road containing $n$ road segments.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
The first line of each test case contains a positive integer $n$ ( $1\leq n\leq 10^5$ ) — the size of the triangular village's sides.
Three lines follow, each containing a binary string of length $n$ which describes the traffic directions of the roads.
The $i$ -th of the following three lines contains a binary string $s_i$ of length $n$ representing the direction of each road parallel to the road segment denoted by $i$ in the picture above. In particular, the $j$ -th character of $s_i$ is "1" if the $j$ -th shortest road (parallel to the road segment denoted by $i$ in the picture) has the same direction of the road segment denoted by $i$ in the picture, while it is "0" if it has the opposite direction. So the first character of $s_i$ describes the direction of the road containing only $1$ road segment, while the last character describes the direction of the road containing $n$ road segments.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, print the minimum number of road segments for which you need to invert the traffic direction.
输入输出样例
输入 #1
3 3 001 001 010 1 0 0 0 3 111 011 100
输出 #1
2 0 3
The first example corresponds to the picture in the statement. There exist multiple solutions that invert the traffic direction of exactly $2$ road segments, but inverting only $1$ road segment never makes it possible to reach every intersection from any other. One of the possible solutions is shown in the picture below in which the inverted road segments are highlighted in blue.
In the second example, the answer is $0$ since it is already possible to reach every intersection from any other.
In the second example, the answer is $0$ since it is already possible to reach every intersection from any other.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted