# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
315193 | 2020-10-22T04:23:03 Z | juggernaut | 이상적인 도시 (IOI12_city) | C++14 | 172 ms | 17280 KB |
#include<bits/stdc++.h> //#include"grader.cpp" using namespace std; typedef long long ll; vector<int>g[2005]; int d[2005][2005],res; int DistanceSum(int n,int *X,int *Y){ if(n<2001){ int i,j; for(i=0;i+1<n;i++) for(j=i+1;j<n;j++){d[i][j]=INT_MAX,d[j][i]=INT_MAX;if(abs(X[i]-X[j])+abs(Y[i]-Y[j])==1){ g[i].push_back(j); g[j].push_back(i); }} for(i=0;i<n;i++){ queue<int>q; q.push(i); while(!q.empty()){ int v=q.front(); q.pop(); for(int to:g[v])if(d[i][to]>d[i][v]+1){ d[i][to]=d[i][v]+1; q.push(to); } } } for(i=0;i+1<n;i++) for(j=i+1;j<n;j++)res=(res+d[i][j])%(1000000000); return res; } } /* 11 2 5 2 6 3 3 3 6 4 3 4 4 4 5 4 6 5 3 5 4 5 6 */
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 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 | 768 KB | Output is correct |
5 | Correct | 1 ms | 896 KB | Output is correct |
6 | Correct | 2 ms | 1280 KB | Output is correct |
7 | Correct | 2 ms | 1280 KB | Output is correct |
8 | Correct | 2 ms | 1280 KB | Output is correct |
9 | Correct | 2 ms | 1280 KB | Output is correct |
10 | Correct | 2 ms | 1280 KB | Output is correct |
11 | Correct | 2 ms | 1280 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 38 ms | 8320 KB | Output is correct |
2 | Correct | 40 ms | 8192 KB | Output is correct |
3 | Correct | 94 ms | 12252 KB | Output is correct |
4 | Correct | 92 ms | 12252 KB | Output is correct |
5 | Correct | 156 ms | 16324 KB | Output is correct |
6 | Correct | 164 ms | 16120 KB | Output is correct |
7 | Correct | 163 ms | 16120 KB | Output is correct |
8 | Correct | 172 ms | 16248 KB | Output is correct |
9 | Correct | 166 ms | 16200 KB | Output is correct |
10 | Correct | 162 ms | 16200 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 36 ms | 17280 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 36 ms | 17272 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |