이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
return 3;
}
#ifdef yugi
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 // yugi
# | 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... |