QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#328975#4580. Bicycle TourNYCU_CartesianTree#RE 15ms8252kbC++202.1kb2024-02-16 11:21:532024-02-16 11:21:53

Judging History

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

  • [2024-02-16 11:21:53]
  • 评测
  • 测评结果:RE
  • 用时:15ms
  • 内存:8252kb
  • [2024-02-16 11:21:53]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

#define int long long 
#define F first 
#define S second 
#define pb push_back
#define ld double
const int mol=998244353;

int dsu1[100005], dsu2[100005], a[100005], ans[100005], fa[100005];
vector<tuple<int, int, int>>mm;
vector<int>node[100005];
bool fi[100005], vv[100005];

int find1(int v){
    if(v==dsu1[v]) return v;
    return dsu1[v]=find1(dsu1[v]);
}

void un1(int g, int h){
    g=find1(g), h=find1(h);
    if(g==h) return;
    dsu1[g]=h;
}
int find2(int v){
    if(v==dsu2[v]) return v;
    return dsu2[v]=find2(dsu2[v]);
}

void un2(int g, int h){
    g=find2(g), h=find2(h);
    if(g==h) return;
    dsu2[g]=h;
}

int dep[100005];
void dfs(int v, int pre){
    dep[v]=dep[pre]+1;
    fa[v]=pre;
    for(int k: node[v]){
        if(k==pre) continue;
        dfs(k, v);
    }
}


void solve(){
    int n, m;
    cin>>n>>m;
    for(int i=1;i<=n;i++) cin>>a[i], dsu1[i]=i, dsu2[i]=i;
    for(int i=1;i<=m;i++){
        int g, h;
        cin>>g>>h;
        mm.pb({abs(a[g]-a[h]), g, h});
    }
    sort(mm.begin(), mm.end());

    for(int i=0;i<mm.size();i++){
        auto [t1, t2, t3]=mm[i];
        if(find1(t2)==find1(t3)){
            fi[i]=1;
        }
        else{
            node[t2].pb(t3);
            node[t3].pb(t2);
            un1(t2, t3);
        }
    }

    dfs(1, 1);
    for(int i=0;i<mm.size();i++){
        // cerr<<i<<"\n";
        if(fi[i]){
            auto [t1,t2,t3]=mm[i];
            if(!vv[t2]) ans[t2]=t1, vv[t2]=1;
            if(!vv[t3]) vv[t3]=1, ans[t3]=t1;
            while(find2(t2) != find2(t3)){
                if(dep[t2]<dep[t3]) swap(t2, t3);
                if(!vv[fa[t2]]) vv[fa[t2]]=1, ans[fa[t2]]=t1;
                un2(t2, fa[t2]);
                t2=find2(t2);
            }
        }
    }
    for(int i=1;i<=n;i++){
        if(!vv[i]) cout<<"-1 ";
        else cout<<ans[i]<<" ";
    }
}

signed main(){
    ios::sync_with_stdio(0);cin.tie(0);
    // int t;
    // cin>>t;
    // while(t--)
    solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

8 11
5 2 7 0 10 6 6 6
1 2
1 3
2 3
2 4
2 5
2 7
3 5
1 6
6 7
6 8
7 8

output:

4 4 5 -1 8 0 0 0 

result:

ok single line: '4 4 5 -1 8 0 0 0 '

Test #2:

score: 0
Accepted
time: 1ms
memory: 5648kb

input:

4 5
10 20 30 40
1 2
1 3
1 4
2 3
3 4

output:

20 20 20 30 

result:

ok single line: '20 20 20 30 '

Test #3:

score: 0
Accepted
time: 1ms
memory: 5680kb

input:

5 4
72 35 22 49 108
1 2
2 3
3 4
4 5

output:

-1 -1 -1 -1 -1 

result:

ok single line: '-1 -1 -1 -1 -1 '

Test #4:

score: 0
Accepted
time: 1ms
memory: 5704kb

input:

2 1
10 20
1 2

output:

-1 -1 

result:

ok single line: '-1 -1 '

Test #5:

score: 0
Accepted
time: 7ms
memory: 6348kb

input:

252 31626
825 5234 3578 4723 2145 4362 1861 2413 7203 1939 3210 7153 2155 4559 4403 1466 887 3786 6529 719 4272 3287 5703 6708 2390 4987 4214 770 3487 6230 3498 6255 4963 1093 3065 2961 1663 4857 3224 4284 4228 106 1614 1010 145 1557 4510 1032 4632 155 5570 154 884 1204 2876 6163 5023 4593 7261 3729...

output:

55 33 46 34 10 33 34 30 22 33 33 46 10 34 26 100 14 62 17 9 13 35 81 45 23 29 23 20 11 32 11 32 29 38 18 13 14 0 28 13 11 42 35 22 9 57 22 22 35 7 52 7 14 45 72 92 14 8 15 62 10 20 21 34 66 9 20 24 29 6 30 16 26 9 6 27 8 40 85 17 12 26 29 17 10 61 35 9 39 15 14 14 31 22 63 66 110 24 16 7 30 22 15 18...

result:

ok single line: '55 33 46 34 10 33 34 30 22 33 ...5 15 71 10 52 18 16 30 10 34 4 '

Test #6:

score: 0
Accepted
time: 1ms
memory: 5784kb

input:

30 435
268435456 1024 67108864 16777216 134217728 131072 524288 512 256 8 32 64 33554432 2097152 128 2048 16384 8192 4096 8388608 65536 536870912 4 2 16 1048576 32768 1 262144 4194304
24 28
23 28
10 28
25 28
11 28
12 28
15 28
9 28
8 28
2 28
16 28
19 28
18 28
17 28
27 28
21 28
6 28
28 29
7 28
26 28
1...

output:

201326592 768 50331648 12582912 100663296 98304 393216 384 192 6 24 48 25165824 1572864 96 1536 12288 6144 3072 6291456 49152 402653184 3 3 12 786432 24576 3 196608 3145728 

result:

ok single line: '201326592 768 50331648 1258291... 786432 24576 3 196608 3145728 '

Test #7:

score: 0
Accepted
time: 15ms
memory: 8252kb

input:

430 92235
268435456 64 536870912 256 128 134217728 2 64 33554432 524288 1048576 268435456 1048576 512 32 32 8192 8192 8192 268435456 256 1024 16384 8 2097152 1 4 65536 268435456 32768 2048 512 128 32768 268435456 8192 4194304 16384 1024 4194304 128 33554432 67108864 1 512 16 128 16384 536870912 4 16...

output:

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

result:

ok single line: '0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 '

Test #8:

score: -100
Runtime Error

input:

4815 185773
999998072 999997632 999995973 999998063 999999530 999999125 999999430 999998145 999999596 999997846 999999214 999998642 999997013 999995796 999999311 999996273 999996607 999996332 999995768 999996225 999996086 999996362 999997090 999997081 999998960 999996645 999996842 999998514 99999527...

output:


result: