QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#710562#7883. Takeout DeliveringSDNUyuqiWA 88ms21204kbC++231.8kb2024-11-04 20:26:562024-11-04 20:26:57

Judging History

你现在查看的是最新测评结果

  • [2024-11-04 20:26:57]
  • 评测
  • 测评结果:WA
  • 用时:88ms
  • 内存:21204kb
  • [2024-11-04 20:26:56]
  • 提交

answer

#include<bits/stdc++.h>

using namespace std;

typedef long long ll;

const int N=1e6+100;

struct EDGE
{
    int u,v,w;
    bool operator<(const EDGE & e)
    {
        return w<e.w;
    }
};

int n,m;

vector<EDGE>e;

int fa[N],fa1[N],fa2[N];

int find(int x,int faa[])
{
    if(faa[x]!=x)
    {
        faa[x]=find(faa[x],faa);
    }
    return faa[x];
}

void hb(int x,int y,int faa[])
{
    x=find(x,faa);
    y=find(y,faa);
    if(x==y)
    {
        return ;
    }
    faa[x]=y;
}

ll K(int faa[],int id,int x,int y)
{
    vector<EDGE>E;
    for(int i=1;i<=n;i++)
    {
        faa[i]=i;
    }
    for(auto [u,v,w]:e)
    {
        int sign=find(u,fa);
        int sign2=find(v,fa);
        if(find(u,fa)==id&&find(v,fa)==id)
        {
            E.push_back({u,v,w});
        }
    }
    for(auto [u,v,w]:E)
    {
        hb(u,v,faa);
        if(find(x,faa)==find(y,faa))
        {
            return w;
        }
    }
    return 0;
}


signed main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    cin>>n>>m;
    for(int i=1;i<=n;i++)
    {
        fa[i]=i;
    }
    for(int i=1;i<=m;i++)
    {
        ll u,v,w;
        cin>>u>>v>>w;
        e.push_back({u,v,w});
    }
    sort(e.begin(),e.end());
    ll an=0;
    for(auto [u,v,w]:e)
    {
        int fu=find(u,fa),fv=find(v,fa);
        int f1=find(1,fa),fn=find(n,fa);
        int sign1=(f1==fu?u:v);
        int signn=(fn==fu?u:v);
        if(f1==find(sign1,fa)&&fn==find(signn,fa))
        {
            int sign=(f1==fu?u:v);
            ll a=K(fa1,f1,1,sign);
            sign=(fn==fu?u:v);
            ll b=K(fa2,fn,n,sign);
            an=w+max(a,b);
            break;
        }
        fa[fu]=fv;
    }
    cout<<an<<endl;
    //system("pause");
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 7660kb

input:

4 6
1 2 2
1 3 4
1 4 7
2 3 1
2 4 3
3 4 9

output:

5

result:

ok 1 number(s): "5"

Test #2:

score: 0
Accepted
time: 88ms
memory: 21204kb

input:

300000 299999
80516 80517 597830404
110190 110191 82173886
218008 218009 954561262
250110 250111 942489774
66540 66541 156425292
34947 34948 239499776
273789 273790 453201232
84428 84429 439418398
98599 98600 326095035
55636 55637 355015760
158611 158612 684292473
43331 43332 43265001
171621 171622 ...

output:

1999991697

result:

ok 1 number(s): "1999991697"

Test #3:

score: 0
Accepted
time: 81ms
memory: 15688kb

input:

300000 299999
207226 231742 414945003
84591 210444 175968953
46327 51582 612565723
18773 141119 82562646
76139 286963 762958587
131867 224820 928900783
215240 216181 405340417
144725 290878 195350550
267216 268752 846015171
31413 255927 389339642
45219 147512 489502910
113391 215402 555706684
53359 ...

output:

1989898633

result:

ok 1 number(s): "1989898633"

Test #4:

score: -100
Wrong Answer
time: 77ms
memory: 20528kb

input:

300000 299999
1 118488 989720257
1 181002 810258689
1 254222 172925351
1 176703 737330574
1 218306 941887568
1 105741 645573853
1 188490 794789787
1 273997 91455946
1 214929 293300204
1 127289 600097406
1 30589 330284120
1 128954 532459734
1 163729 627033607
1 24073 718818252
1 41571 755054850
1 560...

output:

725566197

result:

wrong answer 1st numbers differ - expected: '725564985', found: '725566197'