# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1095994 | YugiHacker | Race (IOI11_race) | C++17 | 6 ms | 10072 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.
#ifndef yugi
#include "race.h"
#endif // yugi
#define maxn 200005
#include<bits/stdc++.h>
using namespace std;
int n, k;
vector <int> a[maxn];
int best_path(int N, int K, int H[][2], int L[])
{
n = N, k = K;
}
#ifdef hacker
main() {
int n, k; cin >> n >> k;
int h[n+1][2], l[n+1];
cin >> n >> k;
for (int i=1; i<n; i++) {
cin >> h[i][0] >> h[i][1] >> l[i];
}
cout << best_path(n, k, h, l);
}
#endif // hacker
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... |