| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 48881 | mrtsima22 | Evacuation plan (IZhO18_plan) | C++17 | 357 ms | 12664 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define lo long
const int lmax=1999999999;
const long long lmx=1999999999999999999;
int n,m,q,Q,hoi;
int a,b,c,k,N[100003];
int min_Dd[100004];
vector<pair<int,int> >v[100003];
void go(int a)
{
vector<int>min_distance(n,10000);
min_distance[a]=0;
set<pair<int,int> >active;
active.insert({0,a});
while(active.size())
{
int where=(*active.begin()).second;
active.erase(active.begin());
for(int i=0;i<v[where].size();i++)
{
if(min_distance[v[where][i].first]>min_distance[where]+v[where][i].second)
{
active.erase({min_distance[v[where][i].first],v[where][i].second});
min_distance[v[where][i].first]=min_distance[where]+v[where][i].second;
active.insert({min_distance[v[where][i].first],v[where][i].first});
}
}
}
for(int i=0;i<=n;i++)
min_Dd[i]=min_distance[i];
}
int main(){std::ios::sync_with_stdio(false);
cin>>n>>m;
for(int i=0;i<m;i++)
{
cin>>a>>b>>c;
v[a].push_back({b,c});
v[b].push_back({a,c});
}
cin>>k;
for(int i=0;i<k;i++)
{
cin>>N[i];
}
cin>>Q;
for(int i=0;i<Q;i++)
{
cin>>a>>b;
go(a);
hoi=-lmax;
for(int j=1;j<=n;j++)
{
hoi=max(hoi,min_Dd[j]);
}
go(b);
for(int j=1;j<=n;j++)
{
hoi=max(hoi,min_Dd[j]);
}
cout<<hoi<<endl;
}
}
/*
* *
* * * *
* * * *
* * * *
* * * *
* * *
* *
* *
* *
* *
* *
* *
* *
* *
*
11 17
10 9 1
10 11 2
10 7 1
9 11 1
9 8 1
8 2 1
8 1 1
2 1 1
2 3 1
3 1 1
3 4 1
4 5 1
5 1 1
1 7 1
7 5 1
7 11 1
4 6 1
2
2 4
1
7 10
*/
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
