# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
739959 | rominanafu | 열대 식물원 (Tropical Garden) (IOI11_garden) | C++11 | 3790 ms | 13236 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "garden.h"
#include "gardenlib.h"
#include <bits/stdc++.h>
#define pii pair<int,int>
using namespace std;
typedef long long ll;
pii s[150005];
bool vis[300005];
int p_fin[300005];
ll dist[300005];
int sig[300005];
int calc_dist_fin (int act, int &fin) {
if (vis[act])
return INT_MAX;
if (dist[act] != -1)
return dist[act];
vis[act] = true;
dist[act] = calc_dist_fin(sig[act], fin) + 1;
p_fin[act] = p_fin[sig[act]];
return dist[act];
}
void count_routes(int n, int m, int fin, int R[][2], int queries, int G[])
{
memset(s, -1, sizeof(s));
memset(dist, -1, sizeof(dist));
memset(p_fin, -1, sizeof(p_fin));
컴파일 시 표준 에러 (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... |