# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
261834 | yabsed | 늑대인간 (IOI18_werewolf) | C++17 | 4070 ms | 32376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "werewolf.h"
#include <bits/stdc++.h>
using namespace std;
int ok[3][200555];
vector <int> v[200555];
int f(int s, int e, int l, int r){
queue <int> q;
//printf("%d %d %d %d\n", s, e, l, r);
memset(ok, 0, sizeof(ok));
if(s<=r){
ok[0][s]=1;
q.push(0);
q.push(s);
}
if(l<=s){
ok[1][s]=1;
q.push(1);
q.push(s);
}
while(!q.empty()){
int type=q.front(); q.pop();
int x=q.front(); q.pop();
//printf("%d %d\n", type, x);
if(l<=x&&x<=r&&!ok[!type][x]){
ok[!type][x]=1;
q.push(!type);
q.push(x);
}
for(int i=0;i<v[x].size();i++){
if(type==0){
if(v[x][i]<=r&&!ok[type][v[x][i]]){
ok[type][v[x][i]]=1;
q.push(type);
q.push(v[x][i]);
}
}
else{
if(l<=v[x][i]&&!ok[type][v[x][i]]){
ok[type][v[x][i]]=1;
q.push(type);
q.push(v[x][i]);
}
}
}
}
return ok[0][e];
}
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) {
int Q = S.size();
for(int i=0;i<X.size();i++){
v[X[i]].push_back(Y[i]);
v[Y[i]].push_back(X[i]);
}
vector<int> A(Q);
for (int i = 0; i < Q; ++i) {
A[i] = f(S[i], E[i], L[i], R[i]);
}
return A;
}
컴파일 시 표준 에러 (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... |