# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
432981 | JeanBombeur | 열대 식물원 (Tropical Garden) (IOI11_garden) | C++17 | 138 ms | 17436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include "garden.h"
#include "gardenlib.h"
using namespace std;
// <|°_°|>
const int INFINI = (1000 * 1000 * 1000 + 1);
const int MAX_NOEUDS = (150 * 1000);
const int MAX_ARETES = (300 * 1000 + 1);
const int MAX_REQUETES = (2000);
vector <int> Voisins[MAX_NOEUDS];
bool Depart[MAX_ARETES];
bool Vu[MAX_ARETES];
int Fils[MAX_ARETES];
int Dist[MAX_ARETES];
pair <int, int> Ans[MAX_REQUETES];
int Occ[MAX_ARETES];
pair <int, int> AretesSorties;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |