A10322 | Bearish Fanpages
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There is a social website with $n$ fanpages, numbered $1$ through $n$ . There are also $n$ companies, and the $i$ -th company owns the $i$ -th fanpage.
Recently, the website created a feature called following. Each fanpage must choose exactly one other fanpage to follow.
The website doesn’t allow a situation where $i$ follows $j$ and at the same time $j$ follows $i$ . Also, a fanpage can't follow itself.
Let’s say that fanpage $i$ follows some other fanpage $j_{0}$ . Also, let’s say that $i$ is followed by $k$ other fanpages $j_{1},j_{2},...,j_{k}$ . Then, when people visit fanpage $i$ they see ads from $k+2$ distinct companies: $i,j_{0},j_{1},...,j_{k}$ . Exactly $t_{i}$ people subscribe (like) the $i$ -th fanpage, and each of them will click exactly one add. For each of $k+1$ companies $j_{0},j_{1},...,j_{k}$ , exactly  people will click their ad. Remaining  people will click an ad from company $i$ (the owner of the fanpage).
The total income of the company is equal to the number of people who click ads from this copmany.
Limak and Radewoosh ask you for help. Initially, fanpage $i$ follows fanpage $f_{i}$ . Your task is to handle $q$ queries of three types:
- 1 i j — fanpage $i$ follows fanpage $j$ from now. It's guaranteed that $i$ didn't follow $j$ just before the query. Note an extra constraint for the number of queries of this type (below, in the Input section).
- 2 i — print the total income of the $i$ -th company.
- 3 — print two integers: the smallest income of one company and the biggest income of one company.
Recently, the website created a feature called following. Each fanpage must choose exactly one other fanpage to follow.
The website doesn’t allow a situation where $i$ follows $j$ and at the same time $j$ follows $i$ . Also, a fanpage can't follow itself.
Let’s say that fanpage $i$ follows some other fanpage $j_{0}$ . Also, let’s say that $i$ is followed by $k$ other fanpages $j_{1},j_{2},...,j_{k}$ . Then, when people visit fanpage $i$ they see ads from $k+2$ distinct companies: $i,j_{0},j_{1},...,j_{k}$ . Exactly $t_{i}$ people subscribe (like) the $i$ -th fanpage, and each of them will click exactly one add. For each of $k+1$ companies $j_{0},j_{1},...,j_{k}$ , exactly  people will click their ad. Remaining  people will click an ad from company $i$ (the owner of the fanpage).
The total income of the company is equal to the number of people who click ads from this copmany.
Limak and Radewoosh ask you for help. Initially, fanpage $i$ follows fanpage $f_{i}$ . Your task is to handle $q$ queries of three types:
- 1 i j — fanpage $i$ follows fanpage $j$ from now. It's guaranteed that $i$ didn't follow $j$ just before the query. Note an extra constraint for the number of queries of this type (below, in the Input section).
- 2 i — print the total income of the $i$ -th company.
- 3 — print two integers: the smallest income of one company and the biggest income of one company.
输入格式
The first line of the input contains two integers $n$ and $q$ ( $3<=n<=100000$ , $1<=q<=100000$ ) — the number of fanpages and the number of queries, respectively.
The second line contains $n$ integers $t_{1},t_{2},...,t_{n}$ ( $1<=t_{i}<=10^{12}$ ) where $t_{i}$ denotes the number of people subscribing the $i$ -th fanpage.
The third line contains $n$ integers $f_{1},f_{2},...,f_{n}$ ( $1<=f_{i}<=n$ ). Initially, fanpage $i$ follows fanpage $f_{i}$ .
Then, $q$ lines follow. The $i$ -th of them describes the $i$ -th query. The first number in the line is an integer $type_{i}$ ( $1<=type_{i}<=3$ ) — the type of the query.
There will be at most $50000$ queries of the first type. There will be at least one query of the second or the third type (so, the output won't be empty).
It's guaranteed that at each moment a fanpage doesn't follow itself, and that no two fanpages follow each other.
The second line contains $n$ integers $t_{1},t_{2},...,t_{n}$ ( $1<=t_{i}<=10^{12}$ ) where $t_{i}$ denotes the number of people subscribing the $i$ -th fanpage.
The third line contains $n$ integers $f_{1},f_{2},...,f_{n}$ ( $1<=f_{i}<=n$ ). Initially, fanpage $i$ follows fanpage $f_{i}$ .
Then, $q$ lines follow. The $i$ -th of them describes the $i$ -th query. The first number in the line is an integer $type_{i}$ ( $1<=type_{i}<=3$ ) — the type of the query.
There will be at most $50000$ queries of the first type. There will be at least one query of the second or the third type (so, the output won't be empty).
It's guaranteed that at each moment a fanpage doesn't follow itself, and that no two fanpages follow each other.
输出格式
For each query of the second type print one integer in a separate line - the total income of the given company. For each query of the third type print two integers in a separate line - the minimum and the maximum total income, respectively.
输入输出样例
输入 #1
5 12 10 20 30 40 50 2 3 4 5 2 2 1 2 2 2 3 2 4 2 5 1 4 2 2 1 2 2 2 3 2 4 2 5 3
输出 #1
10 36 28 40 36 9 57 27 28 29 9 57
In the sample test, there are $5$ fanpages. The $i$ -th of them has $i·10$ subscribers.
On drawings, numbers of subscribers are written in circles. An arrow from $A$ to $B$ means that $A$ follows $B$ .
The left drawing shows the initial situation. The first company gets income  from its own fanpage, and gets income  from the $2$ -nd fanpage. So, the total income is $5+5=10$ . After the first query ("2 1") you should print $10$ .
The right drawing shows the situation after a query "1 4 2" (after which fanpage $4$ follows fanpage $2$ ). Then, the first company still gets income $5$ from its own fanpage, but now it gets only  from the $2$ -nd fanpage. So, the total income is $5+4=9$ now.
On drawings, numbers of subscribers are written in circles. An arrow from $A$ to $B$ means that $A$ follows $B$ .
The left drawing shows the initial situation. The first company gets income  from its own fanpage, and gets income  from the $2$ -nd fanpage. So, the total income is $5+5=10$ . After the first query ("2 1") you should print $10$ .
The right drawing shows the situation after a query "1 4 2" (after which fanpage $4$ follows fanpage $2$ ). Then, the first company still gets income $5$ from its own fanpage, but now it gets only  from the $2$ -nd fanpage. So, the total income is $5+4=9$ now.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted