This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/* Author: goats_9 */
#include <bits/stdc++.h>
using namespace std;
int k, n, m, o;
int spt[50000][17][5][5], ans[5][5], tmp[5][5];
void merge(int res[5][5], int a[5][5], int b[5][5]) {
for (int x = 0; x < k; x++) {
for (int y = 0; y < k; y++) {
for (int z = 0; z < k; z++) {
res[x][y] = min(res[x][y], a[x][z] + b[z][y]);
}
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> k >> n >> m >> o;
memset(spt, 0x3f, sizeof(spt));
for (int i = 0; i < m; i++) {
int a, b, t;
cin >> a >> b >> t;
spt[a/k][0][a%k][b%k] = t;
}
for (int j = 1; j < 17; j++) {
int bm = 1<<j;
for (int i = 0; i + bm < (n + k - 1) / k; i++) {
merge(spt[i][j], spt[i][j - 1], spt[i + bm/2][j - 1]);
}
}
while (o--) {
int a, b;
cin >> a >> b;
memset(ans, 0x3f, sizeof(ans));
for (int i = 0; i < 5; i++) ans[i][i] = 0;
for (int a1 = a / k, b1 = b / k, i = 16; i >= 0; i--) {
if (a1 + (1<<i) <= b1) {
memset(tmp, 0x3f, sizeof(tmp));
merge(tmp, ans, spt[a1][i]);
memcpy(ans, tmp, sizeof(ans));
a1 += (1<<i);
}
}
cout << (ans[a%k][b%k] == 0x3f3f3f3f ? -1 : ans[a%k][b%k]) << '\n';
}
return 0;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |