A14737 | Social Network
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
William arrived at a conference dedicated to cryptocurrencies. Networking, meeting new people, and using friends' connections are essential to stay up to date with the latest news from the world of cryptocurrencies.
The conference has $n$ participants, who are initially unfamiliar with each other. William can introduce any two people, $a$ and $b$ , who were not familiar before, to each other.
William has $d$ conditions, $i$ 'th of which requires person $x_i$ to have a connection to person $y_i$ . Formally, two people $x$ and $y$ have a connection if there is such a chain $p_1=x, p_2, p_3, \dots, p_k=y$ for which for all $i$ from $1$ to $k - 1$ it's true that two people with numbers $p_i$ and $p_{i + 1}$ know each other.
For every $i$ ( $1 \le i \le d$ ) William wants you to calculate the maximal number of acquaintances one person can have, assuming that William satisfied all conditions from $1$ and up to and including $i$ and performed exactly $i$ introductions. The conditions are being checked after William performed $i$ introductions. The answer for each $i$ must be calculated independently. It means that when you compute an answer for $i$ , you should assume that no two people have been introduced to each other yet.
The conference has $n$ participants, who are initially unfamiliar with each other. William can introduce any two people, $a$ and $b$ , who were not familiar before, to each other.
William has $d$ conditions, $i$ 'th of which requires person $x_i$ to have a connection to person $y_i$ . Formally, two people $x$ and $y$ have a connection if there is such a chain $p_1=x, p_2, p_3, \dots, p_k=y$ for which for all $i$ from $1$ to $k - 1$ it's true that two people with numbers $p_i$ and $p_{i + 1}$ know each other.
For every $i$ ( $1 \le i \le d$ ) William wants you to calculate the maximal number of acquaintances one person can have, assuming that William satisfied all conditions from $1$ and up to and including $i$ and performed exactly $i$ introductions. The conditions are being checked after William performed $i$ introductions. The answer for each $i$ must be calculated independently. It means that when you compute an answer for $i$ , you should assume that no two people have been introduced to each other yet.
输入格式
The first line contains two integers $n$ and $d$ ( $2 \le n \le 10^3, 1 \le d \le n - 1$ ), the number of people, and number of conditions, respectively.
Each of the next $d$ lines each contain two integers $x_i$ and $y_i$ ( $1 \le x_i, y_i \le n, x_i \neq y_i$ ), the numbers of people which must have a connection according to condition $i$ .
Each of the next $d$ lines each contain two integers $x_i$ and $y_i$ ( $1 \le x_i, y_i \le n, x_i \neq y_i$ ), the numbers of people which must have a connection according to condition $i$ .
输出格式
Output $d$ integers. $i$ th number must equal the number of acquaintances the person with the maximal possible acquaintances will have, if William performed $i$ introductions and satisfied the first $i$ conditions.
输入输出样例
输入 #1
7 6 1 2 3 4 2 4 7 6 6 5 1 7
输出 #1
1 1 3 3 3 6
输入 #2
10 8 1 2 2 3 3 4 1 4 6 7 8 9 8 10 1 4
输出 #2
1 2 3 4 5 5 6 8
The explanation for the first test case:
In this explanation, the circles and the numbers in them denote a person with the corresponding number. The line denotes that William introduced two connected people. The person marked with red has the most acquaintances. These are not the only correct ways to introduce people.

In this explanation, the circles and the numbers in them denote a person with the corresponding number. The line denotes that William introduced two connected people. The person marked with red has the most acquaintances. These are not the only correct ways to introduce people.

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