# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
121848 | TuGSGeReL | 이상적인 도시 (IOI12_city) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
int DistanceSum(int n, int *x, int *y) {
int mnx = INT_MAX, mny = INT_MAX;
for (int i = 0; i < n; i++)
{
mnx = min(mnx, x[i]);
mny = min(mny, y[i]);
}
for (int i = 0; i < n; i++)
{
x[i] -= mnx;
y[i] -= mny;
}
if ( n <= 0 )
{
} else {
for (int i = 0; i < n; i++)
{
cx[x[i]]++;
cy[y[i]]++;
}
int sx = 0, ans = 0, sy = 0, ssx = 0, ssy = 0;
for (int i = n; i >= 0; i--)
{
ans = (ans + (ssx * cx[i] + cy[i] * ssy) % mod) % mod;
sy = (sy + cy[i]) % mod;
sx = (sx + cx[i]) % mod;
ssx = (ssx + sx) % mod;
ssy = (ssy + sy) % mod;
}
return ans;
}
}