zoukankan      html  css  js  c++  java
  • 并查集

    就是有n组,每组的数量是num,只能增加数字,增加的代价为t,求能使所有组的数量都不同的最小代价。

    #include<bits/stdc++.h> 
    #define N 200005
    #define endl '
    ' 
    #define _for(i,a,b) for(int i=a;i<b;i++)
    using namespace std;
    typedef long long ll;  
    struct Node{
        int num; ll t;
        bool operator < (const Node &o){ 
            return t>o.t;
        }
    }a[N];
    map<int,int > F;
    int find(int k){
        if(F[k]==0){
            return k;
        }
        else return F[k]=find(F[k]); 
    }
    void link(int a,int b){
        int fa=find(a),fb=find(b);
        if(fa!=fb) F[fa]=fb;
    }
    ll res;
    int main(){    
        ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);     
        int n ; cin>>n;
        _for(i,1,n+1) cin>>a[i].num;
        _for(i,1,n+1) cin>>a[i].t;
        sort(a+1,a+n+1);
        _for(i,1,n+1){
            int tem=a[i].num;
            int to= find(tem);
            link(to,to+1);
            if( to == tem ) ;
            else { 
                res+= 1ll*(to-tem)*a[i].t;
            }
        }
        cout<<res<<endl;
        return 0;
    } 

    #include<bits/stdc++.h> #define N 200005#define endl ' ' #define _for(i,a,b) for(int i=a;i<b;i++)using namespace std;typedef long long ll;  struct Node{int num; ll t;bool operator < (const Node &o){ return t>o.t;}}a[N];map<int,int > F;int find(int k){if(F[k]==0){return k;}else return F[k]=find(F[k]); }void link(int a,int b){int fa=find(a),fb=find(b);if(fa!=fb) F[fa]=fb;}ll res;int main(){    ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);     int n ; cin>>n;_for(i,1,n+1) cin>>a[i].num;_for(i,1,n+1) cin>>a[i].t;sort(a+1,a+n+1);_for(i,1,n+1){int tem=a[i].num;int to= find(tem);link(to,to+1);if( to == tem ) ;else { res+= 1ll*(to-tem)*a[i].t;}}cout<<res<<endl;return 0;} 

  • 相关阅读:
    char*,const char*和string 互转
    创建txt文件,并且写入内容
    monit 命令详解(monit)
    monit 配置详解(monitrc)
    nginx 配置详解(./configure)
    nginx 配置详解(nginx.conf)
    获取并检查系统负载CPU内存磁盘网络
    构建Zookeeper集群(zkcluster) ~一篇文章玩转zk集群^.^
    安装Zookeeper到Linux
    使用kubeadm搭建Kubernetes(K8S)集群
  • 原文地址:https://www.cnblogs.com/SunChuangYu/p/12364501.html
Copyright © 2011-2022 走看看