# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1093568 | 2024-09-27T03:53:05 Z | Thanhs | Toll (BOI17_toll) | C++14 | 3000 ms | 80212 KB |
#include <bits/stdc++.h> using namespace std; #define fi first #define se second // #define int long long #define endl '\n' #define setmin(x, y) x = ((x) < (y) ? (x) : (y)) #define setmax(x, y) x = ((x) > (y) ? (x) : (y)) mt19937 hdp(chrono::high_resolution_clock::now().time_since_epoch().count()); int rand(int l, int r){return l + ((hdp() % (r - l + 1)) + r - l + 1) % (r - l + 1);} const int NM = 5e4 + 5; const int LG = 16; const int inf = 1e9; int n, m, q, k; struct node { int dt[5][5]; node() {for (int i = 0; i < 5; i++) for (int j = 0; j < 5; j++) dt[i][j] = inf;} node operator*(const node& o) { node res; for (int i = 0; i < k; i++) for (int j = 0; j < k; j++) for (int t = 0; t < k; t++) setmin(res.dt[i][j], dt[i][t] + o.dt[t][j]); return res; } }st[NM][LG]; void solve() { cin >> k >> n >> m >> q; for (int i = 1; i <= m; i++) { int u, v, w; cin >> u >> v >> w; setmin(st[u / k][0].dt[u % k][v % k], w); } for (int lg = 1; lg <= __lg(n / k + 1); lg++) for (int i = 0; i + (1 << lg) - 1 < n / k; i++) st[i][lg] = st[i][lg - 1] * st[i + (1 << lg - 1)][lg - 1]; while (q--) { int u, v; cin >> u >> v; if (u == v) cout << 0 << endl; else if (u / k < v / k) { int x = v / k - u / k; node res = st[u / k][__lg(x)]; int t = x - (1 << __lg(x)), cur = u / k + (1 << __lg(x)); for (int i = __lg(t); i >= 0; i--) if (t & (1 << i)) { res = res * st[cur][i]; cur += 1 << i; } cout << (res.dt[u % k][v % k] == inf ? -1 : res.dt[u % k][v % k]) << endl; } else cout << -1 << endl; } } signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); if (fopen("in.txt", "r")) { freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); } // freopen("storagebox.inp", "r", stdin); // freopen("storagebox.out", "w", stdout); int tc = 1; // cin >> tc; while (tc--) solve(); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3050 ms | 79440 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3029 ms | 80212 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 32 ms | 78684 KB | Output is correct |
2 | Correct | 32 ms | 78676 KB | Output is correct |
3 | Correct | 31 ms | 78672 KB | Output is correct |
4 | Correct | 31 ms | 78676 KB | Output is correct |
5 | Correct | 34 ms | 78928 KB | Output is correct |
6 | Correct | 32 ms | 78680 KB | Output is correct |
7 | Correct | 1452 ms | 78748 KB | Output is correct |
8 | Execution timed out | 3073 ms | 78756 KB | Time limit exceeded |
9 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 32 ms | 78684 KB | Output is correct |
2 | Correct | 32 ms | 78676 KB | Output is correct |
3 | Correct | 31 ms | 78672 KB | Output is correct |
4 | Correct | 31 ms | 78676 KB | Output is correct |
5 | Correct | 34 ms | 78928 KB | Output is correct |
6 | Correct | 32 ms | 78680 KB | Output is correct |
7 | Correct | 1452 ms | 78748 KB | Output is correct |
8 | Execution timed out | 3073 ms | 78756 KB | Time limit exceeded |
9 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3050 ms | 79440 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |