# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
716006 | sandry24 | Toll (BOI17_toll) | C++17 | 129 ms | 83532 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;
//#pragma GCC optimize("O3,unroll-loops")
//#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pi;
#define pb push_back
#define mp make_pair
#define f first
#define s second
int k, n, m, o;
int ans[5][5], temp[5][5], dp[50000][17][5][5];
void combine(int t[5][5], int a[5][5], int b[5][5]){
for(int i = 0; i < k; i++){
for(int j = 0; j < k; j++){
for(int l = 0; l < k; l++){
t[i][j] = min(t[i][j], a[i][l] + b[l][j]);
}
}
}
}
void solve(){
cin >> k >> n >> m >> o;
int INF = 1e9+7;
memset(dp, 0x3f, sizeof dp);
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... |