# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
570050 | davi_bart | 이상적인 도시 (IOI12_city) | C++17 | 17 ms | 9992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3")
#pragma GCC target("popcnt")
#include <bits/stdc++.h>
using namespace std;
#define ll long long
// #define int ll
#define fi first
#define se second
#define pb push_back
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
static const int mod = 1e9;
int N;
vector<ll> v[100010];
map<ll, ll> ans[100010];
int DistanceSum(int n, int *X, int *Y) {
N = n;
int mi = X[0];
for (int i = 0; i < N; i++) {
mi = min(mi, X[i]);
}
for (int i = 0; i < N; i++) {
X[i] -= mi;
v[X[i]].pb(Y[i]);
}
ll tot = 0;
ll fatte = 0;
for (int i = 0; i < N; i++) {
if (v[i].size() == 0) break;
sort(v[i].begin(), v[i].end());
for (int j = 0; j < v[i].size(); j++) {
ll prima = j;
ll dopo = v[i].size() - j - 1;
ans[i][j] = prima * (prima + 1) / 2 + dopo * (dopo + 1) / 2;
tot += dopo * (dopo + 1) / 2;
if (i) {
ll cur = v[i][j];
cur = max(cur, v[i - 1][0]);
cur = min(cur, v[i - 1].back());
tot += (ll)(1 + abs(v[i][j] - cur)) * fatte + ans[i - 1][cur];
ans[i][j] += (ll)(1 + abs(v[i][j] - cur)) * fatte + ans[i - 1][cur];
}
ans[i][j] %= mod;
tot %= mod;
}
fatte += v[i].size();
}
return tot;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |