A13577 | Pairs of Pairs
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have a simple and connected undirected graph consisting of $n$ nodes and $m$ edges.
Consider any way to pair some subset of these $n$ nodes such that no node is present in more than one pair.
This pairing is valid if for every pair of pairs, the induced subgraph containing all $4$ nodes, two from each pair, has at most $2$ edges (out of the $6$ possible edges). More formally, for any two pairs, $(a,b)$ and $(c,d)$ , the induced subgraph with nodes $\{a,b,c,d\}$ should have at most $2$ edges.
Please note that the subgraph induced by a set of nodes contains nodes only from this set and edges which have both of its end points in this set.
Now, do one of the following:
- Find a simple path consisting of at least $\lceil \frac{n}{2} \rceil$ nodes. Here, a path is called simple if it does not visit any node multiple times.
- Find a valid pairing in which at least $\lceil \frac{n}{2} \rceil$ nodes are paired.
It can be shown that it is possible to find at least one of the two in every graph satisfying constraints from the statement.
Consider any way to pair some subset of these $n$ nodes such that no node is present in more than one pair.
This pairing is valid if for every pair of pairs, the induced subgraph containing all $4$ nodes, two from each pair, has at most $2$ edges (out of the $6$ possible edges). More formally, for any two pairs, $(a,b)$ and $(c,d)$ , the induced subgraph with nodes $\{a,b,c,d\}$ should have at most $2$ edges.
Please note that the subgraph induced by a set of nodes contains nodes only from this set and edges which have both of its end points in this set.
Now, do one of the following:
- Find a simple path consisting of at least $\lceil \frac{n}{2} \rceil$ nodes. Here, a path is called simple if it does not visit any node multiple times.
- Find a valid pairing in which at least $\lceil \frac{n}{2} \rceil$ nodes are paired.
It can be shown that it is possible to find at least one of the two in every graph satisfying constraints from the statement.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^5$ ). Description of the test cases follows.
The first line of each test case contains $2$ integers $n, m$ ( $2 \le n \le 5\cdot 10^5$ , $1 \le m \le 10^6$ ), denoting the number of nodes and edges, respectively.
The next $m$ lines each contain $2$ integers $u$ and $v$ ( $1 \le u, v \le n$ , $u \neq v$ ), denoting that there is an undirected edge between nodes $u$ and $v$ in the given graph.
It is guaranteed that the given graph is connected, and simple — it does not contain multiple edges between the same pair of nodes, nor does it have any self-loops.
It is guaranteed that the sum of $n$ over all test cases does not exceed $5\cdot 10^5$ .
It is guaranteed that the sum of $m$ over all test cases does not exceed $10^6$ .
The first line of each test case contains $2$ integers $n, m$ ( $2 \le n \le 5\cdot 10^5$ , $1 \le m \le 10^6$ ), denoting the number of nodes and edges, respectively.
The next $m$ lines each contain $2$ integers $u$ and $v$ ( $1 \le u, v \le n$ , $u \neq v$ ), denoting that there is an undirected edge between nodes $u$ and $v$ in the given graph.
It is guaranteed that the given graph is connected, and simple — it does not contain multiple edges between the same pair of nodes, nor does it have any self-loops.
It is guaranteed that the sum of $n$ over all test cases does not exceed $5\cdot 10^5$ .
It is guaranteed that the sum of $m$ over all test cases does not exceed $10^6$ .
输出格式
For each test case, the output format is as follows.
If you have found a pairing, in the first line output "PAIRING" (without quotes).
- Then, output $k$ ( $\lceil \frac{n}{2} \rceil \le 2\cdot k \le n$ ), the number of pairs in your pairing.
- Then, in each of the next $k$ lines, output $2$ integers $a$ and $b$ — denoting that $a$ and $b$ are paired with each other. Note that the graph does not have to have an edge between $a$ and $b$ !
- This pairing has to be valid, and every node has to be a part of at most $1$ pair.
Otherwise, in the first line output "PATH" (without quotes).
- Then, output $k$ ( $\lceil \frac{n}{2} \rceil \le k \le n$ ), the number of nodes in your path.
- Then, in the second line, output $k$ integers, $v_1, v_2, \ldots, v_k$ , in the order in which they appear on the path. Formally, $v_i$ and $v_{i+1}$ should have an edge between them for every $i$ ( $1 \le i < k$ ).
- This path has to be simple, meaning no node should appear more than once.
If you have found a pairing, in the first line output "PAIRING" (without quotes).
- Then, output $k$ ( $\lceil \frac{n}{2} \rceil \le 2\cdot k \le n$ ), the number of pairs in your pairing.
- Then, in each of the next $k$ lines, output $2$ integers $a$ and $b$ — denoting that $a$ and $b$ are paired with each other. Note that the graph does not have to have an edge between $a$ and $b$ !
- This pairing has to be valid, and every node has to be a part of at most $1$ pair.
Otherwise, in the first line output "PATH" (without quotes).
- Then, output $k$ ( $\lceil \frac{n}{2} \rceil \le k \le n$ ), the number of nodes in your path.
- Then, in the second line, output $k$ integers, $v_1, v_2, \ldots, v_k$ , in the order in which they appear on the path. Formally, $v_i$ and $v_{i+1}$ should have an edge between them for every $i$ ( $1 \le i < k$ ).
- This path has to be simple, meaning no node should appear more than once.
输入输出样例
输入 #1
4 6 5 1 4 2 5 3 6 1 5 3 5 6 5 1 4 2 5 3 6 1 5 3 5 12 14 1 2 2 3 3 4 4 1 1 5 1 12 2 6 2 7 3 8 3 9 4 10 4 11 2 4 1 3 12 14 1 2 2 3 3 4 4 1 1 5 1 12 2 6 2 7 3 8 3 9 4 10 4 11 2 4 1 3
输出 #1
PATH 4 1 5 3 6 PAIRING 2 1 6 2 4 PAIRING 3 1 8 2 5 4 10 PAIRING 4 1 7 2 9 3 11 4 5
The path outputted in the first case is the following.
The pairing outputted in the second case is the following.
Here is an invalid pairing for the same graph — the subgraph $\{1,3,4,5\}$ has $3$ edges.
Here is the pairing outputted in the third case.
It's valid because —
- The subgraph $\{1,8,2,5\}$ has edges ( $1$ , $2$ ) and ( $1$ , $5$ ).
- The subgraph $\{1,8,4,10\}$ has edges ( $1$ , $4$ ) and ( $4$ , $10$ ).
- The subgraph $\{4,10,2,5\}$ has edges ( $2$ , $4$ ) and ( $4$ , $10$ ).
Here is the pairing outputted in the fourth case.

The pairing outputted in the second case is the following.
Here is an invalid pairing for the same graph — the subgraph $\{1,3,4,5\}$ has $3$ edges.
Here is the pairing outputted in the third case.
It's valid because —
- The subgraph $\{1,8,2,5\}$ has edges ( $1$ , $2$ ) and ( $1$ , $5$ ).
- The subgraph $\{1,8,4,10\}$ has edges ( $1$ , $4$ ) and ( $4$ , $10$ ).
- The subgraph $\{4,10,2,5\}$ has edges ( $2$ , $4$ ) and ( $4$ , $10$ ).
Here is the pairing outputted in the fourth case.

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted