# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1122195 | Luvidi | 늑대인간 (IOI18_werewolf) | C++17 | 4057 ms | 33524 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "werewolf.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn=2e5;
vector<int> adj[maxn];
bool v1[maxn],v2[maxn];
void dfs1(int v,int l){
v1[v]=1;
for(int u:adj[v])if(u>=l&&!v1[u])dfs1(u,l);
}
void dfs2(int v,int r){
v2[v]=1;
for(int u:adj[v])if(u<=r&&!v2[u])dfs2(u,r);
}
std::vector<int> check_validity(int n, std::vector<int> x, std::vector<int> y,
std::vector<int> S, std::vector<int> E,
std::vector<int> L, std::vector<int> R) {
for(int i=0;i<x.size();i++){
adj[x[i]].push_back(y[i]);
adj[y[i]].push_back(x[i]);
}
vector<int> ans;
for(int i=0;i<S.size();i++){
int s=S[i],e=E[i],l=L[i],r=R[i];
for(int j=0;j<n;j++)v1[j]=v2[j]=0;
dfs1(s,l);
dfs2(e,r);
bool b=0;
for(int j=0;j<n;j++)b|=v1[j]&&v2[j];
ans.push_back(b);
}
return ans;
}
컴파일 시 표준 에러 (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... |