# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
66034 |
2018-08-09T12:29:37 Z |
mhnd |
Ideal city (IOI12_city) |
C++14 |
|
1000 ms |
263168 KB |
//#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int N = 5e5+50;
const ll oo = 1e18;
const ll mod = 1e9;
int cost[2010][2010];
bool r[2010][2010];
ll ans = 0;
int cur;
int dx[] = {1,-1,0,0};
int dy[] = {0,0,1,-1};
void bfs(pair<int,int> st){
queue<pair<int,int>> q;
q.push(st);
int fr = r[st.first][st.second];
while(q.size()){
pair<int,int> u = q.front();
q.pop();
int bf = r[u.first][u.second];
for(int i=0;i<4;i++){
pair<int,int> v = {u.first+dx[i],u.second+dy[i]};
int idx = r[v.first][v.second];
if(idx==-1 || cost[fr][idx]==-1)continue;
cost[fr][idx] = cost[fr][bf]+1;
ans = (ans+cost[fr][idx])%mod;
q.push(v);
}
}
}
int DistanceSum(int N, int *X, int *Y) {
if(N<=2000){
int mn1=-1,mn2=-1;
for(int i=0;i<N;i++){
if(mn1==-1||mn1 > X[i])mn1=X[i];
if(mn2==-1||mn2 > X[i])mn2=Y[i];
}
memset(r,-1,sizeof(r));
for(int i=0;i<N;i++){
X[i]-=mn1;
Y[i]-=mn2;
r[X[i]][Y[i]]=i;
}
for(int i=0;i<N;i++)bfs({X[i],Y[i]});
return ans;
}
sort(X,X+N);
int sum=0,ret=0,lst=X[0];
for(int i=0;i<N;i++){
if(X[i]!=lst){
ret = (ret + (X[i]-lst)*1ll*(sum*1ll*(N-sum))%mod)%mod;
lst = X[i];
}
sum++;
}
ans = ret;
sort(Y,Y+N);
sum=0;ret=0;lst=Y[0];
for(int i=0;i<N;i++){
if(Y[i]!=lst){
ret = (ret + (Y[i]-lst)*1ll*(sum*1ll*(N-sum))%mod)%mod;
lst = Y[i];
}
sum++;
}
ans = (ans+ret)%mod;
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1043 ms |
263168 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1036 ms |
263168 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
263168 KB |
Memory limit exceeded: We have a known bug that the memory usage is measured incorrectly (possibly because of Meltdown/Spectre patch), so your solution may be correct. Please submit again. Sorry for the inconvenience. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
263168 KB |
Memory limit exceeded: We have a known bug that the memory usage is measured incorrectly (possibly because of Meltdown/Spectre patch), so your solution may be correct. Please submit again. Sorry for the inconvenience. |
2 |
Halted |
0 ms |
0 KB |
- |