# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
105938 | tincamatei | 열대 식물원 (Tropical Garden) (IOI11_garden) | C++14 | 5027 ms | 9336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "garden.h"
#include "gardenlib.h"
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 150000;
const int MAX_M = 150000;
struct Edge {
int a, b;
inline int other(int x) {
return a ^ b ^ x;
}
} edges[MAX_M];
vector<int> graph[MAX_N];
vector<int> realgraph[MAX_N];
int rushnode(int nod, int x, int lastedge) {
if(x == 0)
return nod;
for(auto it: realgraph[nod])
if(it != lastedge)
return rushnode(edges[it].other(nod), x - 1, it);
return rushnode(edges[realgraph[nod][0]].other(nod), x - 1, realgraph[nod][0]);
}
void count_routes(int N, int M, int P, int R[][2], int Q, int G[]) {
int i;
for(int i = 0; i < M; ++i) {
edges[i] = {R[i][0], R[i][1]};
graph[R[i][0]].push_back(i);
graph[R[i][1]].push_back(i);
}
for(int i = 0; i < N; ++i) {
sort(graph[i].begin(), graph[i].end());
for(int j = 0; j < 2 && j < graph[i].size(); ++j)
realgraph[i].push_back(graph[i][j]);
}
int rez = 0;
for(int i = 0; i < N; ++i)
if(rushnode(i, G[0], -1) == P)
++rez;
for(i=0; i<Q; i++)
answer(rez);
}
컴파일 시 표준 에러 (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... |