# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
75913 | georgerapeanu | 늑대인간 (IOI18_werewolf) | C++11 | 2318 ms | 158608 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "werewolf.h"
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
const int NMAX = 2e5;
const int LGMAX = 19;
vector< vector<int> > graph;
vector< vector<int> > tree_untill;
vector< vector<int> > tree_from;
int father_untill[LGMAX][NMAX + 5];
int father_from[LGMAX][NMAX + 5];
int root_untill;
int root_from;
int fa[NMAX + 5];
vector<int> aint(1,0);
vector<int> leftson(1,0);
vector<int> rightson(1,0);
vector<int> root;
void aint_init(int nod,int st,int dr){
컴파일 시 표준 에러 (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... |