# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
82732 | IOrtroiii | 007 (CEOI14_007) | C++14 | 393 ms | 49688 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <queue>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 200005;
int n, m, s, d, a, b;
vector<int> g[N];
int fa[N], fb[N];
void bfs(int start, int f[]) {
for (int i = 1; i <= n; ++i) f[i] = -1;
f[start] = 0;
queue <int> q; q.push(start);
while(!q.empty()) {
int u = q.front(); q.pop();
for (int v : g[u]) if (f[v] == -1) {
f[v] = f[u] + 1; q.push(v);
}
}
}
int maxdep(int start) {
vector<int> d(n + 1, -1);
queue <int> q; q.push(start); d[start] = 0;
int ans = 0;
while(!q.empty()) {
int u = q.front(); q.pop();
ans = max(ans, d[u]);
for (int v : g[u]) if (fa[v] == fa[u] - 1 && fb[v] == fb[u] - 1 && d[v] == -1) {
d[v] = d[u] + 1; q.push(v);
}
}
return ans;
}
int main() {
scanf("%d %d", &n, &m);
scanf("%d %d %d %d", &s, &d, &a, &b);
for (int i = 1; i <= m; ++i) {
int u, v; scanf("%d %d", &u, &v);
g[u].push_back(v); g[v].push_back(u);
}
bfs(a, fa);
bfs(b, fb);
int wa = fa[d] - fa[s];
int wb = fb[d] - fb[s];
if (wa != wb) {
cout << max(min(wa, wb), -1) << '\n';
} else {
int maxs = maxdep(s), maxd = maxdep(d);
cout << max(wa - (wa + maxs < maxd), -1) << '\n';
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |