wqy的ACM赛G朱柏庐

建虚点,点权看作是从虚点连向实点的边权.
对整个图和虚点跑最小生成树即可.

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <string>
#include <vector>
#include <queue>
#include <cmath>
#include <ctime>
#include <map>
#include <set>
#define MEM(x,y) memset ( x , y , sizeof ( x ) )
#define rep(i,a,b) for (int i = (a) ; i <= (b) ; ++ i)
#define per(i,a,b) for (int i = (a) ; i >= (b) ; -- i)
#define pii pair < int , int >
#define one first
#define two second
#define rint read<int>
#define pb push_back
#define db double

using std::queue ;
using std::set ;
using std::pair ;
using std::max ;
using std::min ;
using std::priority_queue ;
using std::vector ;
using std::swap ;
using std::sort ;
using std::unique ;
using std::greater ;

template < class T >
    inline T read () {
        T x = 0 , f = 1 ; char ch = getchar () ;
        while ( ch < '0' || ch > '9' ) {
            if ( ch == '-' ) f = - 1 ;
            ch = getchar () ;
        }
       while ( ch >= '0' && ch <= '9' ) {
            x = ( x << 3 ) + ( x << 1 ) + ( ch - 48 ) ;
            ch = getchar () ;
       }
       return f * x ;
}

const int N = 1e5 + 100 ;
const int M = 2e5 + 100 ;

struct edge {
    int to , next , data , from ;
    friend bool operator < (edge a , edge b) { return a.data < b.data ; }
} e[M<<1] ;

int n , m , vir , tot , head[M] , f[M] ;
long long ans ;

inline void build (int u , int v , int w) {
    e[++tot].next = head[u] ; e[tot].to = v ; e[tot].from = u ;
    e[tot].data = w ; head[u] = tot ; return ;
}

inline int getf (int x) { return f[x] == x ? x : f[x] = getf ( f[x] ) ; }

signed main (int argc , char * argv[]) {
    n = rint () ; m = rint () ; vir = n + 1 ;
    rep ( i , 1 , n ) {
        int x = rint () ;
        build ( vir , i , x ) ;
        // build ( i , vir , x ) ;
    }
    rep ( i , 1 , m ) {
        int u = rint () , v = rint () , w = rint () ;
        build ( u , v , w ) ; // build ( v , u , w ) ;
    }
    sort ( e + 1 , e + tot + 1 ) ;
    rep ( i , 1 , n << 1 ) f[i] = i ;
    int k = 0 ; rep ( i , 1 , tot ) {
        int u = getf ( e[i].from ) , v = getf ( e[i].to ) ;
        if ( u != v ) {
            ++ k ; f[v] = u ;
            ans += e[i].data ;
        }
        if ( k >= n ) break ;
    }
    printf ("%lld\n" , ans ) ;
    system ("pause") ; return 0 ;
}

原文地址:https://www.cnblogs.com/Equinox-Flower/p/11649994.html

时间: 2024-11-01 11:04:10

wqy的ACM赛G朱柏庐的相关文章

wqy的ACM赛H淮南子

把题目给的式子展开,发现是一组二次函数. 直接对称轴求最小值即可. #include <algorithm> #include <iostream> #include <cstdlib> #include <cstring> #include <cstdio> #include <string> #include <vector> #include <queue> #include <cmath>

2019西北工业大学程序设计创新实践基地春季选拔赛(重现赛)-G(DP)

题目链接:https://ac.nowcoder.com/acm/contest/553/G 题意:给定n,k,(1<=n<=5e5)然后给出n个数ai(1<=ai<=1e5),问按顺序从1..n分组,最多能有多少个组的异或和为k. 思路:自然的,我们用dp[i]表示到第i个人的时候最多有多少个组的异或和为k.计算dp[i]时,有两种情况,要么在第i个人后面分出一组,要么不分.不分的话dp[i]=dp[i-1]就可以了; 如果分得话,就要找到上一个组的终点下标,我们可以计算到第i个

2015北京网络赛 G Boxes BFS+打表

G Boxes 题意:n个位置摆有n个箱子,每次移动只能把相邻的垒起来,且上面的必须小于下面的.求摆成升序需要移动多少步. 思路:这里的n很小,只有7.但是bfs最快的情况需要2s左右,所以就打表了. 诡异的是n = 6时居然都跑不出来都超时,连6也打了个表. 1 #include <iostream> 2 #include <cstdio> 3 #include <fstream> 4 #include <algorithm> 5 #include <

2016年省赛G题, Parenthesis

Problem G: Parenthesis Time Limit: 5 Sec  Memory Limit: 128 MBSubmit: 398  Solved: 75[Submit][Status][Web Board] Description Bobo has a balanced parenthesis sequence P=p1 p2…pn of length n and q questions. The i-th question is whether P remains balan

【计算几何】【圆反演】计蒜客17314 2017 ACM-ICPC 亚洲区(南宁赛区)网络赛 G. Finding the Radius for an Inserted Circle

题意:给你三个半径相同的圆,它们切在一起,然后让你往缝里一个一个地塞圆,问你塞到第k个的半径是多少. 就把上面那两个圆的切点当成反演中心,然后会反演成这个样子,两个平行直线和一个圆. 然后就是往那个圆上面再塞圆,然后反演回去算面积就行了. #include<cstdio> #include<cmath> using namespace std; const double pi=3.14159; int n,K; double R,anss[12]; int main(){ //fr

华中农业大学第四届程序设计大赛网络同步赛 G.Array C 线段树或者优先队列

Problem G: Array C Time Limit: 1 Sec  Memory Limit: 128 MB Description Giving two integers  and  and two arrays  and  both with length , you should construct an array  also with length  which satisfied: 1.0≤Ci≤Ai(1≤i≤n) 2. and make the value S be min

hihocode 1584 : Bounce (找规律)(2017 北京网络赛G)

题目链接 比赛时随便找了个规律,然后队友过了.不过那个规律具体细节还挺烦的.刚刚偶然看到Q巨在群里提到的他的一个思路,妙啊,很好理解,而且公式写起来也容易.OrzQ巨 #include<bits/stdc++.h> using namespace std; typedef long long LL; LL n,m; int main() { while(~scanf("%lld%lld",&n,&m)) { n--,m--; LL g=__gcd(n,m);

ACM-ICPC 2017 沈阳赛区现场赛 G. Infinite Fraction Path &amp;&amp; HDU 6223

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6223 参考题解:https://blog.csdn.net/qq_40482495/article/details/78492841 注意优先队列自定义比较级的用法!! 1 #include <bits/stdc++.h> 2 using namespace std; 3 #define ll long long 4 #define ull unsigned long long 5 #define

队内ACM赛

T1 心灵终结 打表找规律... 1 #include<cstdio> 2 #include<cstring> 3 #include<iostream> 4 #include<algorithm> 5 using namespace std; 6 7 long long T,n,m; 8 9 long long solve(long long x){ 10 if(x%4==0)return x; 11 if(x%4==1)return x+1; 12 if(