이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "highway.h"
#define N 200009
#define pii pair <int, int>
#define ff first
#define ss second
#define pb push_back
#define ll long long
using namespace std;
int n, m, l[N], qwe;
vector<int>e[N];
ll x;
void f(int nd, int lv){
qwe=max(qwe, lv);
if(lv==x){
answer(0, nd);
return;
}
l[nd]=lv;
for(int i=0; i<e[nd].size(); i++)
if(!l[e[nd][i]] and e[nd][i]>0 and qwe<x) f(e[nd][i], lv+1);
}
void find_pair(int NN, std::vector<int>u, std::vector<int>v, int a, int b){
n=NN;
m=u.size();
vector<int>asd;
for(int i=0; i<m; i++){
e[u[i]].pb(v[i]);
e[v[i]].pb(u[i]);
asd.pb(0);
}
if(a>b)
swap(a, b);
x=ask(asd);
x=x/a;
f(0, 0);
}
컴파일 시 표준 에러 (stderr) 메시지
highway.cpp: In function 'void f(int, int)':
highway.cpp:24:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int i=0; i<e[nd].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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |