310559: CF1851E. Nastya and Potions

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

E. Nastya and Potionstime limit per test3 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

Alchemist Nastya loves mixing potions. There are a total of $n$ types of potions, and one potion of type $i$ can be bought for $c_i$ coins.

Any kind of potions can be obtained in no more than one way, by mixing from several others. The potions used in the mixing process will be consumed. Moreover, no potion can be obtained from itself through one or more mixing processes.

As an experienced alchemist, Nastya has an unlimited supply of $k$ types of potions $p_1, p_2, \dots, p_k$, but she doesn't know which one she wants to obtain next. To decide, she asks you to find, for each $1 \le i \le n$, the minimum number of coins she needs to spend to obtain a potion of type $i$ next.

Input

The first line of each test contains an integer $t$ ($1 \le t \le 10^4$) — the number of test cases.

Each test case is described as follows:

The first line contains two integers $n$ and $k$ ($1 \le k < n \le 2 \cdot 10^5$) — the total number of potion types and the number of potion types Nastya already has.

The second line contains $n$ integers $c_1, c_2, \dots, c_n$ ($1 \le c_i \le 10^9$) — the costs of buying the potions.

The third line contains $k$ distinct integers $p_1, p_2, \dots, p_k$ ($1 \le p_i \le n$) — the indices of potions Nastya already has an unlimited supply of.

This is followed by $n$ lines describing ways to obtain potions by mixing.

Each line starts with the integer $m_i$ ($0 \le m_i < n$) — the number of potions required to mix a potion of the type $i$ ($1 \le i \le n$).

Then line contains $m_i$ distinct integers $e_1, e_2, \dots, e_{m_i}$ ($1 \le e_j \le n$, $e_j \ne i$) — the indices of potions needed to mix a potion of the type $i$. If this list is empty, then a potion of the type $i$ can only be bought.

It is guaranteed that no potion can be obtained from itself through one or more mixing processes.

It is guaranteed that the sum of all $n$ values across all test cases does not exceed $2 \cdot 10^5$. Similarly, it is guaranteed that the sum of all $m_i$ values across all test cases does not exceed $2 \cdot 10^5$.

Output

For each test case, output $n$ integers — the minimum number of coins Nastya needs to spend to obtain a potion of each type.

ExamplesInput
4
5 1
30 8 3 5 10
3
3 2 4 5
0 
0 
2 3 5
0 
3 2
5 143 3
1 3
1 2
0 
2 1 2
5 1
5 4 1 3 4
2
2 4 5
3 3 5 4
2 1 4
1 5
0 
4 2
1 1 5 4
2 4
3 2 4 3
0 
2 2 4
1 2
Output
23 8 0 5 10 
0 143 0 
5 0 1 3 4 
0 0 0 0 
Input
3
6 3
5 5 4 5 2 2
3 4 5
2 2 5
1 5
3 4 1 6
4 2 6 1 5
0 
0 
6 2
1 4 4 1 5 2
3 6
4 6 3 4 5
4 6 5 3 4
0 
1 5
1 6
0 
2 1
4 3
1
0 
1 1
Output
0 0 0 0 0 2 
0 0 0 0 0 0 
0 0 
Note

In the first test case of the first sample, it is optimal:

  • Get a potion of the first type by buying and mixing $2$, $4$ and $5$;
  • a potion of the second type can only be obtained by purchasing it;
  • Nastya already has an unlimited number of potions of the third type;
  • a potion of the fourth type is more profitable to buy than to buy and mix other potions;
  • a potion of the fifth type can only be obtained by purchasing it.

Input

题意翻译

### 题目描述 炼金术士 Nastya 很喜欢合成药水。现有 $ n $ 种药水,第 $ i $ 种药水可以用 $ c_i $ 个金币买入。 任何一种药水的合成方案都不超过 $ 1 $ 种。在合成某种药水的过程中,作为原料的药水将会被**完全消耗**。任何药水都不能直接或间接合成它本身。 作为一个经验老道的炼金术士,Nastya 已经可以**无限制地**获得 $ p_1, p_2, \dots, p_k $ 这 $ k $ 种药水,可是她却没法决定接下来要合成哪些药水。于是,她求助于你。对于 $ 1 \le i \le n $,她需要你求出获得第 $ i $ 种药水所需的最少的金币数。 ### 输入格式 每个测试点的第一行包含一个整数 $ t \text{ } (1 \le t \le 10^4) $,表示测试数据组数。 每组测试数据输入格式如下: 第一行包含两个整数 $ n $ 和 $ k \text{ } (1 \le k < n \le 2 \times 10^5) $,表示药水的种数和 Nastya 已经可以无限制地获得的药水种数。 第二行包含 $ n $ 个整数 $ c_1, c_2, \dots, c_n \text{ } (1 \le c_i \le 10^9) $,表示买入某种药水所需的金币数。 第三行包含 $ k $ 个互不相同的整数 $ p_1, p_2, \dots, p_k \text{ } (1 \le p_i \le n) $,表示 Nastya 已经可以无限制地获得的药水的序号。 接下来的 $ n $ 行表示 $ n $ 种药水各自的合成方案。 第 $ i $ 行的开头是一个整数 $ m_i \text{ } (0 \le m_i < n) $,表示合成第 $ i $ 种药水需要 $ m_i $ 种其他药水。 $ m_i $ 的后面紧跟着 $ m_i $ 个不同的整数 $ e_1, e_2, \dots, e_{m_i} \text{ } (1 \le e_j \le n, e_j \neq i) $,代表合成第 $ i $ 种药水所需的其他药水。 如果 $ m_i = 0 $,表示第 $ i $ 种药水不能被合成,只能被买入。 输入数据保证任何药水都不能直接或间接合成它本身。 输入数据保证单个测试点内 $ n $ 的总和不超过 $ 2 \times 10^5 $。同样,单个测试点内 $ m_i $ 的总和也不超过 $ 2 \times 10^5 $。 ### 输出格式 对于每组测试数据,输出 $ n $ 个整数,代表 Nastya 获得每种药水各自所需的最少金币数。 ### 说明/提示 对于样例一的第一组测试数据,最优方案如下: - 用药水 $ 2, 4, 5 $ 合成药水 $ 1 $。 - 药水 $ 2 $ 只能买入。 - 药水 $ 3 $ 是无限制供应的。 - 相较于用药水 $ 3, 5 $ 合成药水 $ 4 $,直接买入更划算。 - 药水 $ 5 $ 只能买入。

Output

题目大意:
Nastya是一个炼金术士,她喜欢混合药剂。总共有n种药剂,每种药剂i可以花费c_i金币购买。任何药剂只能通过混合其他一种药剂得到,并且用于混合的药剂将被消耗。Nastya有无限供应的k种药剂p_1, p_2, ..., p_k,但她不知道接下来想获得哪种药剂。为了决定,她请你帮她找出对于每个1 ≤ i ≤ n,获得一种类型为i的药剂所需花费的最少金币数。

输入数据格式:
第一行包含一个整数t(1 ≤ t ≤ 10^4)——测试用例的数量。
每个测试用例的描述如下:
第一行包含两个整数n和k(1 ≤ k < n ≤ 2 * 10^5)——药剂的种类总数和Nastya已经拥有的药剂种类数。
第二行包含n个整数c_1, c_2, ..., c_n(1 ≤ c_i ≤ 10^9)——购买药剂的费用。
第三行包含k个不同的整数p_1, p_2, ..., p_k(1 ≤ p_i ≤ n)——Nastya已经拥有的无限供应的药剂索引。
接下来n行描述通过混合获得药剂的方式。
每行开始于一个整数m_i(0 ≤ m_i < n)——混合类型为i的药剂所需的药剂数量(1 ≤ i ≤ n)。
然后是该行包含m_i个不同的整数e_1, e_2, ..., e_{m_i}(1 ≤ e_j ≤ n,e_j ≠ i)——混合类型为i的药剂所需的药剂索引。如果这个列表为空,那么药剂i只能通过购买获得。
保证没有任何药剂可以通过一个或多个混合过程从自身获得。
保证所有测试用例的n值总和不超过2 * 10^5。同样,保证所有测试用例的m_i值总和也不超过2 * 10^5。

输出数据格式:
对于每个测试用例,输出n个整数——Nastya获得每种类型药剂所需花费的最少金币数。题目大意: Nastya是一个炼金术士,她喜欢混合药剂。总共有n种药剂,每种药剂i可以花费c_i金币购买。任何药剂只能通过混合其他一种药剂得到,并且用于混合的药剂将被消耗。Nastya有无限供应的k种药剂p_1, p_2, ..., p_k,但她不知道接下来想获得哪种药剂。为了决定,她请你帮她找出对于每个1 ≤ i ≤ n,获得一种类型为i的药剂所需花费的最少金币数。 输入数据格式: 第一行包含一个整数t(1 ≤ t ≤ 10^4)——测试用例的数量。 每个测试用例的描述如下: 第一行包含两个整数n和k(1 ≤ k < n ≤ 2 * 10^5)——药剂的种类总数和Nastya已经拥有的药剂种类数。 第二行包含n个整数c_1, c_2, ..., c_n(1 ≤ c_i ≤ 10^9)——购买药剂的费用。 第三行包含k个不同的整数p_1, p_2, ..., p_k(1 ≤ p_i ≤ n)——Nastya已经拥有的无限供应的药剂索引。 接下来n行描述通过混合获得药剂的方式。 每行开始于一个整数m_i(0 ≤ m_i < n)——混合类型为i的药剂所需的药剂数量(1 ≤ i ≤ n)。 然后是该行包含m_i个不同的整数e_1, e_2, ..., e_{m_i}(1 ≤ e_j ≤ n,e_j ≠ i)——混合类型为i的药剂所需的药剂索引。如果这个列表为空,那么药剂i只能通过购买获得。 保证没有任何药剂可以通过一个或多个混合过程从自身获得。 保证所有测试用例的n值总和不超过2 * 10^5。同样,保证所有测试用例的m_i值总和也不超过2 * 10^5。 输出数据格式: 对于每个测试用例,输出n个整数——Nastya获得每种类型药剂所需花费的最少金币数。

加入题单

上一题 下一题 算法标签: