luogu#P9716. [EC Final 2022] Coloring
[EC Final 2022] Coloring
题目描述
You are given elements numbered from to . Element has value and color . Each element also has a pointer to some other element.
Initially, the color of element is , while the color of all the other elements is . More formally, and for all .
You can perform the following operation for any number of times:
- Assign at a cost of .
Your score is equal to the sum of values of all the elements with color after the operations minus the sum of costs of the operations.
Find the maximum possible score you can obtain.
输入格式
The first line contains two integers () the number of elements and the element with color initially.
The second line contains integers () the value of the elements.
The third line contains integers () the cost of changing the color of each element.
The fourth line contains integers (, ).
输出格式
Output one integer representing the answer in one line.
题目大意
【题目描述】
给定 个元素,编号从 到 。元素 的值为 ,颜色为 。每个元素还有一个指针 指向另一个元素。
最初,元素 的颜色为 ,而所有其他元素的颜色都为 。更正式地说,对于所有 ,有 和 。
你可以任意多次执行以下操作:
- 以代价 将 。
你的得分等于所有颜色为 的元素值的总和减去操作的总代价。
找出你能够获得的最大可能得分。
【输入格式】
第一行包含两个整数 和 () 元素数量以及初始颜色为 的元素。
第二行包含 个整数 () 元素的值。
第三行包含 个整数 () 改变每个元素颜色的代价。
第四行包含 个整数 (, )。
【输出格式】
输出一行一个整数,表示答案。
【样例解释】
在第一个样例中,你可以依次执行以下操作:
- 以代价 将 ,然后 ;
- 以代价 将 ,然后 ;
- 以代价 将 ,然后 ;
- 以代价 将 ,然后 。
操作后,只有元素 的颜色为 ,因此你的得分等于 。可以证明无法获得大于 的得分。
翻译来自于:ChatGPT
3 1
-1 -1 2
1 0 0
3 1 2
1
10 8
36175808 53666444 14885614 -14507677
-92588511 52375931 -87106420 -7180697
-158326918 98234152
17550389 45695943 55459378 18577244
93218347 64719200 84319188 34410268
20911746 49221094
8 1 2 2 8 8 4 7 8 4
35343360
提示
(There won’t be extra line breakers in the actual test cases.)
In the first sample, you can successively perform the following operations:
- Assign at a cost of , then ;
- Assign at a cost of , then ;
- Assign at a cost of , then ;
- Assign at a cost of , then .
After the operations, only the color of element is , so your score is equal to . It can be shown that it is impossible to obtain a score greater than .