# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1005372 | tvladm2009 | Toll (BOI17_toll) | C++17 | 99 ms | 170064 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>
using namespace std;
typedef long long ll;
const int N = 5e4 + 7;
const ll INF = 1e18;
int k, n, m, o;
struct Matrix {
ll mat[5][5];
Matrix() {
for (int x = 0; x < 5; ++x) {
for (int y = 0; y < 5; ++y) {
mat[x][y] = INF;
}
}
}
Matrix operator * (Matrix other) {
Matrix c;
for (int x = 0; x < k; ++x) {
for (int y = 0; y < k; ++y) {
for (int z = 0; z < k; ++z) {
c.mat[x][y] = min(c.mat[x][y], mat[x][z] + other.mat[z][y]);
}
}
# | 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... |