#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include <debug.h>
#include "grader.cpp"
#else
#define debug(...)
#endif
#define ft front
#define bk back
#define st first
#define nd second
#define ins insert
#define ers erase
#define pb push_back
#define pf push_front
#define _pb pop_back
#define _pf pop_front
#define lb lower_bound
#define ub upper_bound
#define mtp make_tuple
#define bg begin
#define ed end
#define all(x) (x).bg(), (x).ed()
#define sz(x) (int)(x).size()
typedef long long ll; typedef unsigned long long ull;
typedef double db; typedef long double ldb;
typedef pair<int, int> pi; typedef pair<ll, ll> pll;
typedef vector<int> vi; typedef vector<ll> vll; typedef vector<pi> vpi; typedef vector<pll> vpll;
typedef string str;
template<typename T> T gcd(T a, T b) { return (b == 0? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }
#define FOR(i, l, r) for (int (i) = (l); (i) <= (r); ++(i))
#define FOS(i, r, l) for (int (i) = (r); (i) >= (l); --(i))
#define FRN(i, n) for (int (i) = 0; (i) < (n); ++(i))
#define FSN(i, n) for (int (i) = (n) - 1; (i) >= 0; --(i))
#define EACH(i, x) for (auto &(i) : (x))
#define WHILE while
#define file "TEST"
mt19937 rd(chrono::steady_clock::now().time_since_epoch().count());
ll rand(ll l, ll r) { return uniform_int_distribution<ll>(l, r)(rd); }
/*
----------------------------------------------------------------
END OF TEMPLATE
----------------------------------------------------------------
Tran The Bao - ghostwriter
Training for VOI23 gold medal
----------------------------------------------------------------
DIT ME CHUYEN BAO LOC
----------------------------------------------------------------
*/
const int oo = 1e9 + 5;
const int M = 1e9;
namespace subtask12 {
const int MAXN = 2e3;
vi adj[MAXN];
map<pi, int> d;
vi bfs(int N, int source) {
vi d(N, oo);
queue<int> q;
d[source] = 0;
q.push(source);
WHILE(!q.empty()) {
int u = q.ft();
q.pop();
EACH(v, adj[u]) {
if (d[v] != oo) continue;
d[v] = d[u] + 1;
q.push(v);
}
}
return d;
}
int DistanceSum(int N, int *X, int *Y) {
FRN(i, N) d[{X[i], Y[i]}] = i;
FRN(i, N) {
if (d.count({X[i] - 1, Y[i]})) {
int pos = d[{X[i] - 1, Y[i]}];
adj[i].pb(pos);
adj[pos].pb(i);
}
if (d.count({X[i], Y[i] - 1})) {
int pos = d[{X[i], Y[i] - 1}];
adj[i].pb(pos);
adj[pos].pb(i);
}
}
int rs = 0;
FRN(i, N) {
vi d = bfs(N, i);
FRN(j, i) (rs += d[j]) %= M;
}
return rs;
}
}
int DistanceSum(int N, int *X, int *Y) {
if (N <= 2000) return subtask12::DistanceSum(N, X, Y);
return N;
}
/*
11
2 5
2 6
3 3
3 6
4 3
4 4
4 5
4 6
5 3
5 4
5 6
----------------------------------------------------------------
From Benq:
stuff you should look for
* int overflow, array bounds
* special cases (n=1?)
* do smth instead of nothing and stay organized
* WRITE STUFF DOWN
* DON'T GET STUCK ON ONE APPROACH
----------------------------------------------------------------
*/
Compilation message
city.cpp: In function 'vi subtask12::bfs(int, int)':
city.cpp:37:31: warning: unnecessary parentheses in declaration of 'v' [-Wparentheses]
37 | #define EACH(i, x) for (auto &(i) : (x))
| ^
city.cpp:66:13: note: in expansion of macro 'EACH'
66 | EACH(v, adj[u]) {
| ^~~~
city.cpp: In function 'int subtask12::DistanceSum(int, int*, int*)':
city.cpp:35:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
35 | #define FRN(i, n) for (int (i) = 0; (i) < (n); ++(i))
| ^
city.cpp:75:9: note: in expansion of macro 'FRN'
75 | FRN(i, N) d[{X[i], Y[i]}] = i;
| ^~~
city.cpp:35:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
35 | #define FRN(i, n) for (int (i) = 0; (i) < (n); ++(i))
| ^
city.cpp:76:9: note: in expansion of macro 'FRN'
76 | FRN(i, N) {
| ^~~
city.cpp:35:28: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
35 | #define FRN(i, n) for (int (i) = 0; (i) < (n); ++(i))
| ^
city.cpp:89:9: note: in expansion of macro 'FRN'
89 | FRN(i, N) {
| ^~~
city.cpp:35:28: warning: unnecessary parentheses in declaration of 'j' [-Wparentheses]
35 | #define FRN(i, n) for (int (i) = 0; (i) < (n); ++(i))
| ^
city.cpp:91:13: note: in expansion of macro 'FRN'
91 | FRN(j, i) (rs += d[j]) %= M;
| ^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
356 KB |
Output is correct |
4 |
Correct |
1 ms |
468 KB |
Output is correct |
5 |
Correct |
1 ms |
352 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
2 ms |
340 KB |
Output is correct |
8 |
Correct |
2 ms |
356 KB |
Output is correct |
9 |
Correct |
1 ms |
352 KB |
Output is correct |
10 |
Correct |
2 ms |
352 KB |
Output is correct |
11 |
Correct |
2 ms |
360 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
24 ms |
448 KB |
Output is correct |
2 |
Correct |
27 ms |
356 KB |
Output is correct |
3 |
Correct |
59 ms |
508 KB |
Output is correct |
4 |
Correct |
66 ms |
512 KB |
Output is correct |
5 |
Correct |
104 ms |
468 KB |
Output is correct |
6 |
Correct |
116 ms |
568 KB |
Output is correct |
7 |
Correct |
111 ms |
468 KB |
Output is correct |
8 |
Correct |
117 ms |
584 KB |
Output is correct |
9 |
Correct |
116 ms |
468 KB |
Output is correct |
10 |
Correct |
108 ms |
492 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
596 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
604 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |