# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
570051 | 2022-05-28T13:46:15 Z | davi_bart | 이상적인 도시 (IOI12_city) | C++17 | 17 ms | 10096 KB |
#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 ll mod = 1e9; int N; vector<ll> v[100010]; map<ll, ll> ans[100010]; signed DistanceSum(signed n, signed *X, signed *Y) { N = n; int mi = X[0]; for (int i = 0; i < N; i++) { mi = min(mi, (int)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; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 7252 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 7380 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 17 ms | 10096 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 14 ms | 10068 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |