제출 #166835

#제출 시각아이디문제언어결과실행 시간메모리
166835Trickster관광지 (IZhO14_shymbulak)C++14
0 / 100
1566 ms207008 KiB
//Suleyman Atayew

#include <algorithm>
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <vector>
#include <queue>
#include <cmath>
#include <map>
#include <set>

#define N 5010
#define ff first
#define ss second
#define pb push_back
#define ll long long
#define inf 1000000007
#define pii pair <ll, ll>

using namespace std;

int n;
int a, b;
int v[N][N];
vector <int> E[N];

int main()
{
	scanf("%d", &n);
	
	for(ll i = 1; i <= n; i++) {
		scanf("%d%d", &a, &b);
		
		E[a].pb(b);
		E[b].pb(a);
	}
	
	for(ll i = 1; i <= n; i++)
		for(ll h = 1; h <= n; h++)
			v[i][h] = 1e9;
	
	for(ll i = 1; i <= n; i++) {
		queue <ll> Q;
		Q.push(i);
		
		v[i][i] = 0;
		
		while(!Q.empty()) {
			ll x = Q.front();
			Q.pop();
			
			for(auto h: E[x])
				if(v[i][h] == 1e9) {
					v[i][h] = v[i][x] + 1;
					Q.push(h);
				}
		}
	}
	
	int mx = 0;
	for(ll i = 1; i <= n; i++)
		for(ll h = 1; h <= n; h++)
			mx = max(mx, v[i][h]);
	
	vector <pii> A;
	for(ll i = 1; i <= n; i++)
		for(ll h = i; h <= n; h++)
			if(mx == v[i][h])
				A.pb({i, h});
	
	ll ans = 0;
	for(auto i: A) {
		ll a = i.ff, b = i.ss;
		
		queue <ll> Q;
		Q.push(b);
		
		ll arr[N];
		ll vis[N];
		memset(arr, 0, sizeof(arr));
		memset(vis, 0, sizeof(vis));
		
		while(!Q.empty()) {
			ll x = Q.front();
			Q.pop();
			
			for(auto h: E[x])
				if(v[a][h] == v[a][x]-1 && vis[h] == 0)
					arr[v[a][h]]++, Q.push(h), vis[h] = 1;
		}
		
		ll sum = 1;
		for(ll h = 0; h < mx; h++) sum *= arr[h];
		
		ans += sum;
	}
	printf("%lld", ans);
}

컴파일 시 표준 에러 (stderr) 메시지

shymbulak.cpp: In function 'int main()':
shymbulak.cpp:30:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
shymbulak.cpp:33:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &a, &b);
   ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...