A14249 | Balance the Cards
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A balanced bracket sequence is defined as an integer sequence that can be built with the following rules:
- The empty sequence is balanced.
- If $[a_1,\ldots,a_n]$ and $[b_1,\ldots, b_m]$ are balanced, then their concatenation $[a_1,\ldots,a_n,b_1,\ldots,b_m]$ is balanced.
- If $x$ is a positive integer and $[a_1,\ldots,a_n]$ is balanced, then $[x,a_1,\ldots,a_n,-x]$ is balanced.
The positive numbers can be imagined as opening brackets and the negative numbers as closing brackets, where matching brackets must have the same type (absolute value). For example, $[1, 2, -2, -1]$ and $[1, 3, -3, 2, -2, -1]$ are balanced, but $[1, 2, -1, -2]$ and $[-1, 1]$ are not balanced.
There are $2n$ cards. Each card has a number on the front and a number on the back. Each integer $1,-1,2,-2,\ldots,n,-n$ appears exactly once on the front of some card and exactly once on the back of some (not necessarily the same) card.
You can reorder the cards however you like. You are not allowed to flip cards, so numbers cannot move between the front and back. Your task is to order the cards so that the sequences given by the front numbers and the back numbers are both balanced, or report that it is impossible.
- The empty sequence is balanced.
- If $[a_1,\ldots,a_n]$ and $[b_1,\ldots, b_m]$ are balanced, then their concatenation $[a_1,\ldots,a_n,b_1,\ldots,b_m]$ is balanced.
- If $x$ is a positive integer and $[a_1,\ldots,a_n]$ is balanced, then $[x,a_1,\ldots,a_n,-x]$ is balanced.
The positive numbers can be imagined as opening brackets and the negative numbers as closing brackets, where matching brackets must have the same type (absolute value). For example, $[1, 2, -2, -1]$ and $[1, 3, -3, 2, -2, -1]$ are balanced, but $[1, 2, -1, -2]$ and $[-1, 1]$ are not balanced.
There are $2n$ cards. Each card has a number on the front and a number on the back. Each integer $1,-1,2,-2,\ldots,n,-n$ appears exactly once on the front of some card and exactly once on the back of some (not necessarily the same) card.
You can reorder the cards however you like. You are not allowed to flip cards, so numbers cannot move between the front and back. Your task is to order the cards so that the sequences given by the front numbers and the back numbers are both balanced, or report that it is impossible.
输入格式
The first line contains a single integer $n$ ( $1\le n\le 2\cdot 10^5$ ) — the number of bracket types, and half the number of cards.
The next $2n$ lines describe the cards. The $i$ -th of these lines contains two integers $a_i$ , $b_i$ ( $-n\le a_i,b_i\le n$ , $a_i\ne 0$ , $b_i\ne 0$ ) — the numbers on the front and back of the $i$ -th card, respectively. Every integer $1,-1,2,-2,\ldots,n,-n$ appears exactly once as $a_i$ and exactly once as $b_i$ .
The next $2n$ lines describe the cards. The $i$ -th of these lines contains two integers $a_i$ , $b_i$ ( $-n\le a_i,b_i\le n$ , $a_i\ne 0$ , $b_i\ne 0$ ) — the numbers on the front and back of the $i$ -th card, respectively. Every integer $1,-1,2,-2,\ldots,n,-n$ appears exactly once as $a_i$ and exactly once as $b_i$ .
输出格式
On the first line, output "YES" if it's possible to reorder these cards to satisfy the condition. Otherwise, output "NO". You can print each letter in any case (upper or lower).
If it is possible, on the next $2n$ lines output the cards in an order so that the front and back are both balanced. If there are multiple solutions, you may output any.
If it is possible, on the next $2n$ lines output the cards in an order so that the front and back are both balanced. If there are multiple solutions, you may output any.
输入输出样例
输入 #1
5 1 3 -3 -5 4 -3 2 2 -1 -4 -2 5 3 -1 5 1 -4 4 -5 -2
输出 #1
YES 1 3 4 -3 -4 4 -1 -4 5 1 3 -1 2 2 -2 5 -3 -5 -5 -2
输入 #2
2 1 1 -1 2 2 -1 -2 -2
输出 #2
NO
In the first test case, the front numbers create the balanced sequence $[1,4,-4,-1,5,3,2,-2,-3,-5]$ and the back numbers create the balanced sequence $[3,-3,4,-4,1,-1,2,5,-5,-2]$ .
In the second test case, the cards are given in an order so that the front numbers are balanced, but the back numbers create the unbalanced sequence $[1,2,-1,-2]$ . If we swapped the second and third cards, we would balance the back numbers and unbalance the front numbers. But there is no order that balances both.
In the second test case, the cards are given in an order so that the front numbers are balanced, but the back numbers create the unbalanced sequence $[1,2,-1,-2]$ . If we swapped the second and third cards, we would balance the back numbers and unbalance the front numbers. But there is no order that balances both.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted