이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
using namespace std;
#define rc(x) return cout<<x<<endl,0
#define pb push_back
#define dbg(x) cout << #x << '=' << x << '\n';
#define ll long long
#define sz size()
#define x first
#define y second
#define pi pair <int, int>
#define pii pair <pi, int>
#define vi vector <int>
const ll mod = 1000000007;
//#define int ll
int n, s, q, e;
vector<int> d;
int f[100001], l[100001];
pi road[100001];
bitset<100001> sh;
vector <pi> g[100001];
void dfs(int p, int cur){
d.pb(cur);
for(pi i: g[cur]){
if(i.x!=p) dfs(cur, i.x);
}
d.pb(cur);
}
int32_t main(){
ios_base :: sync_with_stdio(0); cin.tie(); cout.tie();
cin>>n>>s>>q>>e;
for(int i=1; i<=n-1; i++){
int x, y, z;
cin>>x>>y>>z;
road[i]={x, y};
g[x].pb({y, z});
g[y].pb({x, z});
}
for(int i=1; i<=s; i++){
int x;
cin>>x;
sh[x]=1;
}
if(s==n){
dfs(0, e);
for(int i=0; i<d.size(); i++){
l[d[i]]=i;
if(!f[i]) f[d[i]]=i;
}
for(int i=1; i<=q; i++){
int rd, r;
cin>>rd>>r;
int x=road[rd].x, y=road[rd].y;
if(f[x]<=f[r] && l[x]>=l[r] && f[y]<=f[r] && l[y]>=l[r]) cout<<0<<"\n";
else cout<<"escaped\n";
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
valley.cpp: In function 'int32_t main()':
valley.cpp:48:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i<d.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... |