This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//#include "grader.cpp"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N=205, mod= 1e9;
int used[N][N], x[N], y[N], n, dist[N][N], pos[N][N], used1[N][N];
void Dijkstra(int xx,int yy){
memset(used1, 0, sizeof(used1));
queue<pair<int, pair<int,int>>> q;
q.push({0,{xx,yy}});
used1[xx][yy]=1;
while(!q.empty()){
auto point = q.front();
q.pop();
int d = point.first,
a = point.second.first,
b = point.second.second;
for(int i=-1;i<=1;i+=2){
int x1=a+i, y1=b;
if(used[x1][y1] && !used1[x1][y1]) {
used1[x1][y1] = 1;
dist[pos[xx][yy]][pos[x1][y1]] = d+1;
q.push({d+1,{x1,y1}});
}
}
for(int i=-1;i<=1;i+=2){
int x1=a, y1=b+i;
if(used[x1][y1] && !used1[x1][y1]) {
used1[x1][y1] = 1;
dist[pos[xx][yy]][pos[x1][y1]] = d+1;
q.push({d+1,{x1,y1}});
}
}
}
}
int DistanceSum(int N, int *X, int *Y) {
n=N;
for(int i=0;i<n;i++){
x[i]=X[i];
y[i]=Y[i];
used[x[i]][y[i]]=1;
pos[x[i]][y[i]]=i;
}
for(int i=0;i<n;i++){
Dijkstra(x[i], y[i]);
}
/*
for(int i=0;i<n;i++){
for(int j=i+1;j<n;j++){
cout<<i<<" "<<j<<" "<<dist[i][j]<<"\n";
}
}
*/
int ans=0;
for(int i=0; i<n; i++){
for(int j=i+1; j<n;j++){
ans += dist[i][j];
ans %= mod;
}
}
return ans;
}
/*
11
2 5
2 6
3 3
3 6
4 3
4 4
4 5
4 6
5 3
5 4
5 6
*/
| # | 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... |