이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "race.h"
#include<bits/stdc++.h>
using namespace std;
int n , x , y , z , *l , k , ans ;
vector < int > vec [ 1005 ] ;
void go ( int chi , int par , int len , int depth ) {
if ( len == k ) {
ans = min ( ans , depth ) ;
}
for ( int i = 0 ; i < vec [ chi ] . size ( ) ; i ++ ) {
if ( vec [ chi ] [ i ] == par ) continue ;
go ( vec [ chi ] [ i ] , chi , len + l [ vec [ chi ] [ i ] ] , depth + 1 ) ;
}
return ;
}
int best_path(int N, int K, int H[][2], int L[]) {
k = K ;
l = L ;
for ( int i = 0 ; i < N - 1 ; i ++ ) {
vec [ H [ i ] [ 0 ] ] . push_back ( H [ i ] [ 1 ] ) ;
vec [ H [ i ] [ 1 ] ] . push_back ( H [ i ] [ 0 ] ) ;
}
ans = 10001 ;
for ( int i = 0 ; i < N ; i ++ ) {
go ( i , -1 , 0 , 0 ) ;
}
if ( ans == 10001 ) return -1 ;
else return ans ;
}
컴파일 시 표준 에러 (stderr) 메시지
race.cpp: In function 'void go(int, int, int, int)':
race.cpp:12:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | for ( int i = 0 ; i < vec [ chi ] . size ( ) ; i ++ ) {
| ~~^~~~~~~~~~~~~~~~~~~~~~~~
# | 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... |