QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#406783#3846. Link-Cut TreexiaoleTL 1ms5608kbC++231.9kb2024-05-07 18:20:322024-05-07 18:20:32

Judging History

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

  • [2024-05-07 18:20:32]
  • 评测
  • 测评结果:TL
  • 用时:1ms
  • 内存:5608kb
  • [2024-05-07 18:20:32]
  • 提交

answer

#include<bits/stdc++.h>
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
using namespace std;
using ll = int;
using PLL = pair<ll,ll>;
const ll INF=0x3f3f3f3f;
const ll Q = 1e5+9;
const ll MOD = 1e9 + 7;
pair<ll,ll> tu[Q];
ll a[Q];
int root(ll x){return a[x]==x?x:a[x]=root(a[x]);}
vector<pair<ll,ll>> d[Q];
ll now=0;ll cnt2=0;
vector<ll> ans;
bool okor=false ;
map<ll,pair<ll,ll>>mp;
ll cnt=0;
void bfs(ll x){
    queue<ll> q;
    q.push(x);
    while(q.size()){
        x=q.front();q.pop();
        for (auto &&[i,u] : d[x])
        {
            if(i==cnt2){
                ans.push_back(u);
                while(mp[x].first!=cnt){
                    ans.push_back(mp[x].second);
                    x=mp[x].first;
                }
                ans.push_back(mp[x].second);
                return;
            }
            if(mp[x].first==i) continue;
            mp[i]={x,u};
            q.push(i);
        }

        
    }
}
void solve(){
    mp.clear();
   ll n,m;cin>>n>>m;okor=false ;
   ans.clear();now=0;
   for (ll i = 0; i <= n; i++)
   {
    a[i]=i;d[i].clear();
   }
    for (ll i = 1; i <= m; i++)
    {
        cin>>tu[i].first>>tu[i].second;
    }
    cnt=0;
    bool isok=false;
    for (ll i = 1; i <= m; i++)
    {
        if(root(tu[i].second)==root(tu[i].first)){
            cnt=tu[i].first;cnt2=tu[i].second;
            isok=true;ans.push_back(i);
            break;
        }
        a[tu[i].second]=root(tu[i].first);
        d[tu[i].second].push_back({tu[i].first,i});
        d[tu[i].first].push_back({tu[i].second,i});
    }
    if(isok==false){
        cout<<-1<<"\n";
        return;
    }
    now=cnt;
    bfs(cnt);
    
    sort(ans.begin(),ans.end());
   for (ll i = 0; i < ans.size()-1; i++)
   {
    cout<<ans[i]<<" ";
   }
   cout<<ans[ans.size()-1]<<"\n";
}
int main(){
    ll _=1;cin>>_;
    while (_--)solve();
    return 0;
}

详细

Test #1:

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

input:

2
6 8
1 2
2 3
5 6
3 4
2 5
5 4
5 1
4 2
4 2
1 2
4 3

output:

2 4 5 6
-1

result:

ok 2 lines

Test #2:

score: -100
Time Limit Exceeded

input:

1658
9 20
6 4
5 8
1 7
2 3
3 8
3 1
4 8
5 3
7 6
1 6
4 9
4 1
9 3
2 5
4 5
8 9
1 8
4 2
5 7
3 6
14 78
13 12
10 8
2 10
6 13
2 14
13 1
14 10
9 6
2 13
8 3
9 8
5 6
14 12
8 1
9 14
9 5
12 6
5 10
3 12
10 4
8 5
9 10
6 8
1 6
12 4
3 13
1 5
10 3
13 9
10 13
2 5
4 7
7 1
7 6
9 3
2 12
1 10
9 1
1 14
3 1
3 4
11 1
11 6
7 1...

output:

3 9 10
3 5 7
1 3 4
2 3 4
4 12 13 16
1 3 4 5 9
6 11 13
1 2 3
2 9 11 13
8 18 20 22
1 3 8
1 2 4
1 3 4
1 2 3
1 2 3

result: