# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
134255 | Kastanda | Toll (BOI17_toll) | C++11 | 169 ms | 63632 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#define pb push_back
#define x first
#define y second
using namespace std;
const int N = 150005, K = 6, LG = 17;
int n, m, k, q, P[LG][N][K];
int main()
{
memset(P, 63, sizeof(P));
scanf("%d%d%d%d", &k, &n, &m, &q);
for (int i = 1; i <= m; i++)
{
int a, b, t;
scanf("%d%d%d", &a, &b, &t);
P[0][a][b % k] = min(P[0][a][b % k], t);
}
int pw = 1;
for (int i = 1; i < LG; i++)
{
if (pw * k >= n)
break;
for (int j = 0; j < n; j++)
for (int h = 0; h < k; h++)
for (int md = 0; md < k; md++)
P[i][j][h] = min(P[i][j][h], P[i - 1][j][md] + P[i - 1][(j / k + pw) * k + md][h]);
pw <<= 1;
}
for (; q; q --)
{
Compilation message (stderr)
# | 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... |