답안 #882034

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
882034 2023-12-02T13:29:48 Z nikd 꿈 (IOI13_dreaming) C++17
0 / 100
1000 ms 13392 KB
#include <bits/stdc++.h>
#include "dreaming.h"
#define MAXN 100001
using namespace std;

int f;
int max_dis;
int par[MAXN];
int tree[MAXN];
int cont=0;
vector<int> mintree;
bool vis[MAXN]={};
vector<pair<int, int>> adj[MAXN];
int dist[MAXN]={};

void dfs1(int v, int p){
    
    for(auto u: adj[v]){
        if(u.first!=p){
            dist[u.first]=dist[v]+u.second;
            if(dist[u.first]>max_dis){
                max_dis=dist[u.first];
                f=u.first;
            }
            dfs1(u.first, v);
        }
    }
}

void dfs2(int v, int p){
    par[v]=p;
    for(auto u: adj[v]){
        if(u.first!=p){
            dist[u.first]=dist[v]+u.second;
            if(dist[u.first]>max_dis){
                max_dis=dist[u.first];
                f=u.first;
            }
            dfs2(u.first, v);
        }
    }
}

int travelTime(int N, int M, int L, int A[], int B[], int T[]){
    for(int i = 0; i<M; i++){
        adj[A[i]].push_back({B[i], T[i]});
        adj[B[i]].push_back({A[i], T[i]});
    }
    for(int i = 0; i<N; i++){
        if(!vis[i]){
            mintree.push_back(INT_MAX);
            max_dis=0;
            f=0;
            dist[i]=0;
            dfs1(i, i);
            int a = f;
            dist[a]=0;
            max_dis=0;
            dfs2(a, a);
            int b = f;
            int d= max_dis/2;
            int last=-1;
            while(dist[b]>d){
                last=b;
                b=par[b];
            }
            if(last==-1){
                mintree[cont]=dist[b];
            }
            else{
                mintree[cont]=min(dist[last], max_dis-dist[b]);
            }
            cont++;
        }
    }
    int maxbest1=0;
    int maxbest2=0;
    int maxbest3=0;
    for(int j: mintree){
        if(j>maxbest1){
            maxbest3=maxbest2;
            maxbest2=maxbest1;
            maxbest1=j;
            
        }
        else if(j>maxbest2){
            maxbest3=maxbest2;
            maxbest2=j;
        }
        else if(j>maxbest3){
            maxbest3=j;
        }
    }
    int sol;
    if(maxbest3!=-1){
        sol =max(maxbest1+L+maxbest2, maxbest2+maxbest3+2*L);
    }
    else sol=maxbest1+L+maxbest2;
    return sol;
    
    
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1025 ms 13392 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 4444 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1025 ms 13392 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 12 ms 7644 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 4444 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1025 ms 13392 KB Time limit exceeded
2 Halted 0 ms 0 KB -