제출 #363074

#제출 시각아이디문제언어결과실행 시간메모리
363074Kevin_Zhang_TW이상적인 도시 (IOI12_city)C++17
32 / 100
153 ms7532 KiB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); }
template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T L, T R) { while (L != R) cerr << *L << " \n"[next(L) == R], ++L; }
#else
#define DE(...) 0
#define debug(...) 0
#endif
const int MAX_N = 300010, inf = 1e9;

int N;
vector<int> edge[MAX_N];
ll bfs_all(int s) {
	vector<int> dis(N, inf); dis[s] = 0;
	queue<int> q; q.push(s);
	ll res = 0;
	while (q.size()) {
		int x = q.front(); q.pop();
		res += dis[x];
		for (int u : edge[x]) if (chmin(dis[u], dis[x] + 1))
			q.push(u);
	}
	return res;
}
int DistanceSum(int N, int *X, int *Y) {
	::N = N;
	if (N > 2000) return -1;
	for (int i = 0;i < N;++i)
		for (int j = 0;j < N;++j) if (i != j) 
			if (abs(X[i]-X[j]) + abs(Y[i]-Y[j]) == 1)
				edge[i].pb(j);
	ll res = 0;
	for (int i = 0;i < N;++i)
		res += bfs_all(i);
	return res / 2 % 1'000'000'000;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...