# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
44554 | MatheusLealV | One-Way Streets (CEOI17_oneway) | C++17 | 404 ms | 34992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define N 100050
#define logn 20
#define f first
#define s second
using namespace std;
typedef pair<int, int> pii;
int q, n, m, dfsnum[N], dfslow[N], cnt, pai[N];
int dp[N], ans[N];
int solved[N];
vector<int> pontes;
map<pii, int> ccnt;
vector<pii> G[N], A, grafo[N];
void dfs(int x)
{
dfsnum[x] = dfslow[x] = ++cnt;
for(int i = 0; i< G[x].size(); i++)
{
int v = G[x][i].f, id = G[x][i].s;
if(!dfsnum[v])
{
컴파일 시 표준 에러 (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... |