//#include "grader.cpp"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
const int N=205, mod= 1e9;
int used[N][N], x[N], y[N], n, dist[N][N], pos[N][N];
vector<vector<int>> edges(2005);
vector<pair<int,int>> pi;
void Dijkstra(int cur){
queue<int>q;
q.push(cur);
dist[cur][cur]=0;
while(!q.empty()){
int u=q.front();
q.pop();
for(auto x:edges[u]){
if(dist[cur][u]+1 < dist[cur][x]){
dist[cur][x] = dist[cur][u]+1;
q.push(x);
}
}
}
}
pair<int,int> four [4] = {{-1,0}, {+1,0}, {0,-1}, {0,+1}};
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];
pi.pb({x[i], y[i]});
used[x[i]][y[i]]=1;
pos[x[i]][y[i]]=i;
for(int j=0;j<n;j++)
dist[i][j]=2e9;
}
for(int i=0;i<n;i++){
for(int j=0;j<4;j++){
int x1 = x[i]+four[j].first, y1 = y[i]+four[j].second;
if(used[x1][y1])
edges[i].pb(pos[x1][y1]);
}
}
for(int i=0;i<n;i++)
Dijkstra(i);
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
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
512 KB |
Output is correct |
6 |
Correct |
2 ms |
640 KB |
Output is correct |
7 |
Correct |
2 ms |
640 KB |
Output is correct |
8 |
Correct |
2 ms |
640 KB |
Output is correct |
9 |
Correct |
2 ms |
512 KB |
Output is correct |
10 |
Correct |
2 ms |
640 KB |
Output is correct |
11 |
Correct |
2 ms |
640 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
1280 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
6 ms |
1024 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
6 ms |
1024 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |