洛谷P1621《集合》
素数筛 + 并查集
题目背景
John的农场缺水了!!!
题目描述
Farmer John has decided to bring water to his N (1 <= N <= 300) pastures which are conveniently numbered 1..N. He may bring water to a pasture either by building a well in that pasture or connecting the pasture via a pipe to another pasture which already has water.
Digging a well in pasture i costs W_i (1 <= W_i <= 100,000).
Connecting pastures i and j with a pipe costs P_ij (1 <= P_ij <= 100,000; P_ij = P_ji; P_ii=0).
Determine the minimum amount Farmer John will have to pay to water all of his pastures.
POINTS: 400
农民John 决定将水引入到他的n(1<=n<=300)个牧场。他准备通过挖若
干井,并在各块田中修筑水道来连通各块田地以供水。在第i 号田中挖一口井需要花费W_i(1<=W_i<=100,000)元。连接i 号田与j 号田需要P_ij (1 <= P_ij <= 100,000 , P_ji=P_ij)元。
请求出农民John 需要为使所有农场都与有水的农场相连或拥有水井所需要的钱数。
输入输出格式
输入格式
第1 行为一个整数n。
第2 到n+1 行每行一个整数,从上到下分别为W_1 到W_n。
第n+2 到2n+1 行为一个矩阵,表示需要的经费(P_ij)。
输出格式
只有一行,为一个整数,表示所需要的钱数。
输入输出样例
输入样例
1 |
|
输出样例
1 |
|
说明
John等着用水,你只有1s时间!!!
解题思路
题目中“质数”两个字很是显眼啊
还等啥啊
筛啊
素数筛很好写吧
筛完了,然后呢?
题目让我们找两个公共质因数 的,不在一个集合里的数,并合并它们。我们不这样找
枚举每一个质数primes[i]
,计算出第一个
大于A
的primes[i]的倍数
(题目要求的)记为,然后从一直枚举到(每次增长一个,毕竟要求必须有这个数作为质因数),每次用并查集合并和当前枚举到的这个数
代码实现
1 |
|
- 本文作者:Handwer STD
- 本文链接:https://blog.handwer-std.top/2019-02-04/Luogu-P1621/index.html
- 版权声明:本博客所有文章均采用 BY-NC-SA 许可协议,转载请注明出处!