#include <bits/stdc++.h>
using namespace std;
#define int long long
const int maxn = 50000;
const int maxo = 10000;
const int maxk = 5;
const int logn = 17;
const int INF = 1e15;
int k, n, m, o;
int dp[maxn][logn][maxk][maxk];
int ans[maxk][maxk], ans2[maxk][maxk];
inline void comb(int a2[maxk][maxk], int a[maxk][maxk], int m[maxk][maxk]) {
for (int i = 0; i < k; i++)
for (int j = 0; j < k; j++)
for (int l = 0; l < k; l++)
a2[i][l] = min(a2[i][l], a[i][j] + m[j][l]);
}
signed main() {
cin.tie(nullptr) -> ios::sync_with_stdio(false);
freopen("main.in", "r", stdin);
fill(dp[0][0][0], dp[0][0][0] + maxn*logn*maxk*maxk, INF);
cin >> k >> n >> m >> o;
for (int i = 0; i < m; i++) {
int a, b, t; cin >> a >> b >> t;
dp[a/k][0][a%k][b%k] = t;
}
for (int i = 1; i < logn; i++) { // for each power of 2 jump
for (int j = 0; j + (1 << i) <= (n+k-1)/k; j++) { // do all j where j+(power of 2) is still an actual section
comb(dp[j][i], dp[j][i-1], dp[j+(1<<(i-1))][i-1]);
}
}
for (int i = 0; i < o; i++) {
int a, b; cin >> a >> b;
int A = a/k, B = b/k;
fill(ans[0], ans[0] + maxk*maxk, INF);
ans[a%k][a%k] = 0;
for (int j = logn-1; j >= 0; j--)
if (((B-A)>>j) & 1) {
fill(ans2[0], ans2[0] + maxk*maxk, INF);
comb(ans2, ans, dp[A][j]);
A += (1<<j);
for (int c = 0; c < k; c++)
for (int d = 0; d < k; d++)
ans[c][d] = ans2[c][d];
}
cout << (ans[a%k][b%k] == INF ? -1 : ans[a%k][b%k]) << endl;
}
return 0;
}
Compilation message
toll.cpp: In function 'int main()':
toll.cpp:25:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
25 | freopen("main.in", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
225 ms |
337736 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
238 ms |
337832 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
269 ms |
337736 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
269 ms |
337736 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
225 ms |
337736 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |