# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4150 | pys7293 | Cactus? Not cactus? (kriii1_C) | C++98 | 76 ms | 15104 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <cstdio>
#include <map>
#include <memory.h>
#include <vector>
using namespace std;
int N, M;
int Lv[111111], C;
int Lo[111111];
int Chk[111111];
int P[111111];
vector<vector<int> > L;
void DFS(int i, int PP)
{
if (Lv[i] == 0) Lv[i] = Lo[i] = ++C;
for (int j = 0; j < L[i].size(); j++) {
if (PP == L[i][j]) continue;
if (Lv[L[i][j]] == 0) {
P[L[i][j]] = i;
DFS(L[i][j], i);
Lo[i] = min(Lo[i], Lo[L[i][j]]);
if (Lv[i] < Lo[L[i][j]]) Chk[L[i][j]] = true;
} else Lo[i] = min(Lo[i], Lv[L[i][j]]);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |