# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
497195 | CyberCow | 관광지 (IZhO14_shymbulak) | C++17 | 1565 ms | 9844 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <string>
#include <cmath>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <fstream>
#include <iomanip>
#include <iterator>
#include <stack>
#include <deque>
using namespace std;
using ll = long long;
vector<int> v[200004];
queue<int> q;
int color[200004], ans = 0, n, ma, c[200004];
void Dfs(int a, int qan)
{
if (qan == ma)
{
ans++;
return;
}
color[a] = 1;
for (int to: v[a])
{
if (!color[to] && qan + 1 == c[to])
Dfs(to, qan + 1);
}
color[a] = 0;
}
void solve()
{
int i, j, x, y, oo = 1000000000;
cin >> n;
for ( i = 0; i < n; i++)
{
cin >> x >> y;
v[x].push_back(y);
v[y].push_back(x);
}
color[1] = 1;
q.push(1);
while (!q.empty())
{
x = q.front();
q.pop();
for ( i = 0; i < v[x].size(); i++)
{
if (!color[v[x][i]])
{
color[v[x][i]] = color[x] + 1;
q.push(v[x][i]);
}
}
}
int ind = 0;
for ( i = 1; i <= n; i++)
{
if (color[i] > ma)
{
ma = color[i];
ind = i;
}
color[i] = 0;
}
color[ind] = 1;
q.push(ind);
while (!q.empty())
{
x = q.front();
q.pop();
for (i = 0; i < v[x].size(); i++)
{
if (!color[v[x][i]])
{
color[v[x][i]] = color[x] + 1;
q.push(v[x][i]);
}
}
}
ma = 0;
for (i = 1; i <= n; i++)
{
ma = max(ma, color[i]);
color[i] = 0;
}
for ( j = 1; j <= n; j++)
{
c[j] = 1;
q.push(j);
while (!q.empty())
{
x = q.front();
q.pop();
for (i = 0; i < v[x].size(); i++)
{
if (!c[v[x][i]])
{
c[v[x][i]] = c[x] + 1;
q.push(v[x][i]);
}
}
}
Dfs(j, 1);
for ( i = 1; i <= n; i++)
{
c[i] = 0;
}
}
cout << ans / 2;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int tt = 1;
//cin >> tt;
while (tt--)
{
solve();
}
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... |