# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
976532 | phcbaka | Relay Marathon (NOI20_relaymarathon) | C++17 | 153 ms | 6744 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
using ii = pair <int, int>;
int n, m, k;
void read()
{
cin >> n >> m >> k;
}
struct vet
{
int spec[511]={}, a[511][511];
ii dp[511][511];
void calc()
{
memset(a, 0x3f3f, sizeof(a));
for (int i = 1; i <= n; ++i) a[i][i] = 0;
for (int i = 1; i <= m; ++i)
{
int u, v, L;
cin >> u >> v >> L;
a[u][v] = min(a[u][v], L);
a[v][u] = min(a[v][u], L);
}
for (int i = 1; i <= k; ++i)
{
int u;
cin >> u;
spec[u] = 1;
}
for (int k = 1; k <= n; ++k)
for (int i = 1; i <= n; ++i)
for (int j = 1; j <= n; ++j)
a[i][j] = min(a[i][j], a[i][k]+a[k][j]);
for (int i = 1; i <= n; ++i)
{
for (int j = 1; j <= n; ++j)
if (spec[i] == 0 or spec[j] == 0 or i == j)
{
dp[i][j] = ii(1e9, j);
}
else dp[i][j] = ii(a[i][j], j);
sort (dp[i]+1, dp[i]+n+1);
}
int ans = LLONG_MAX;
for (int i = 1; i <= n; ++i)
for (int j = 1; j <= n; ++j)
for (int t = 1; t <= min(5ll, n); ++t)
for (int c = 1; c <= min(5ll, n); ++c)
if (i != j and i != dp[i][t].second and i != dp[j][c].second
and j != dp[i][t].second and j != dp[j][c].second
and dp[i][t].second != dp[j][c].second)
{
ans = min(ans, dp[i][t].first + dp[j][c].first);
}
cout << ans;
exit(0);
}
}Vetcan;
signed main()
{
cin.tie(0)->sync_with_stdio(0);
#define task "cities"
if (fopen(task ".inp", "r"))
{
freopen(task ".inp", "r", stdin);
freopen(task ".out", "w", stdout);
}
read ();
if (n <= 500)
{
Vetcan.calc();
}
return 0;
}
컴파일 시 표준 에러 (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... |