# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
679886 | tigar | 꿈 (IOI13_dreaming) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<pair<int, int> >graff[100010];
int dist[100010], dist2[100010], anc[100010];
bool check[100010], check2[100010];
vector<int>LongestPaths;
int v, d;
void dfs(int cvor)
{
check[cvor]=true;
if(dist[cvor]>d){v=cvor; d=dist[cvor];}
for(int i=0; i<graff[cvor].size(); i++)
{
if(!check[graff[cvor][i].first])
{
dist[graff[cvor][i].first]=dist[cvor]+graff[cvor][i].second;
dfs(graff[cvor][i].first);
}
}
}
void dfs2(int cvor)
{
check2[cvor]=true;
if(dist2[cvor]>d){v=cvor; d=dist2[cvor];}
for(int i=0; i<graff[cvor].size(); i++)
{
if(!check2[graff[cvor][i].first])
{
dist2[graff[cvor][i].first]=dist2[cvor]+graff[cvor][i].second;
anc[graff[cvor][i].first]=cvor;
dfs2(graff[cvor][i].first);
}
}
}
int travelTime(int N, int M, int L, int A[], int B[], int T[])
{
for(int i=0; i<M; i++)
{
graff[A[i]].push_back({B[i], T[i]});
graff[B[i]].push_back({A[i], T[i]});
}
for(int i=0; i<N; i++)
{
if(!check[i])
{
v=i; dfs(i);
d=0; int pp=v;
dfs2(v);
int predak=v;
vector<int>putic;
while(predak!=pp){putic.push_back(predak); predak=anc[predak];}
putic.push_back(predak);
int rez=INT_MAX;
for(int j=0; j<putic.size(); j++)
{
//cout<<putic[j]<<" ";
int bg=putic[j];
rez=min(rez, max(dist2[bg], d-dist2[bg]));
}
LongestPaths.push_back(rez);
d=0; v=0;
}
}
sort(LongestPaths.begin(), LongestPaths.end());
int lngt=LongestPaths.size()-1;
return max(LongestPaths[lngt]+L+LongestPaths[lngt-1], LongestPaths[lngt-1]+LongestPaths[lngt-2]+2*L);
}
/*int main()
{
int N, M, L;
cin>>N>>M>>L;
int A[100], B[100], T[100];
for(int i=0; i<M; i++)cin>>A[i]>>B[i]>>T[i];
cout<<travelTime(N, M, L, A, B, T);
}
/*12 8 2
0 8 4
8 2 2
2 7 4
5 11 3
5 1 7
1 3 1
1 9 5
10 6 3*/