61632023-11-04 00:36:26horvathabelMobilNet (50 pont)cpp17Accepted 50/5064ms21400 KiB
#include <bits/stdc++.h>
using namespace std;
int cnt=0;
vector<int> p(100001,-1);
int maxw=0;
int ans=0;
struct node{
int a;
int b;
int w;
};
bool r(node a, node b){
return (a.w<b.w);
        }
int holvan(int a){
    if (p[a]==-1) return a;
    return p[a]=holvan(p[a]);
}
void unio(int a,int b, int w){
    a=holvan(a);
    b=holvan(b);
    if (a!=b){
        cnt++;
        if (w>maxw){
            maxw=w;
            ans=0;
        }
        if (w==maxw) ans++;
        p[b]=a;
    }
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin>>n;
    map<int,vector<pair<int,int>>> xk;
    map<int,vector<pair<int,int>>> yk;
    vector<node>  g;
    for (int i=0; i<n;i++){
        int x,y;
        cin>>x>>y;
        yk[y].push_back({x,i});
        xk[x].push_back({y,i});


    }
    for (auto a:xk){
        vector<pair<int,int>> lehetoseg=a.second;
        sort(lehetoseg.begin(),lehetoseg.end());
        for (int i=0; i<lehetoseg.size()-1;i++){
            int w=lehetoseg[i+1].first-lehetoseg[i].first;
            g.push_back({lehetoseg[i+1].second,lehetoseg[i].second,w});
        }
    }
    for (auto a:yk){
        vector<pair<int,int>> lehetoseg=yk[a.first];
        sort(lehetoseg.begin(),lehetoseg.end());
        for (int i=0; i<lehetoseg.size()-1;i++){
            int w=lehetoseg[i+1].first-lehetoseg[i].first;
            g.push_back({lehetoseg[i+1].second,lehetoseg[i].second,w});
        }
    }
    sort(g.begin(),g.end(),r);
    int i=0;
    while (cnt<n-1 && i<g.size()){
        unio(g[i].a,g[i].b,g[i].w);
        i++;
    }
    cout<<maxw<<"\n";
    cout<<ans;
}
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/04ms2700 KiB
2Accepted0/08ms4192 KiB
3Accepted2/23ms3356 KiB
4Accepted2/23ms3472 KiB
5Accepted2/23ms3480 KiB
6Accepted2/23ms3596 KiB
7Accepted2/23ms3808 KiB
8Accepted2/24ms3892 KiB
9Accepted2/24ms4284 KiB
10Accepted2/26ms4956 KiB
11Accepted2/28ms5288 KiB
12Accepted2/210ms6028 KiB
13Accepted3/314ms7112 KiB
14Accepted3/319ms8116 KiB
15Accepted3/328ms10904 KiB
16Accepted3/332ms11728 KiB
17Accepted3/346ms15068 KiB
18Accepted3/332ms13300 KiB
19Accepted3/346ms16268 KiB
20Accepted3/348ms16188 KiB
21Accepted3/364ms21400 KiB
22Accepted3/361ms21292 KiB