# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1010891 | voi | One-Way Streets (CEOI17_oneway) | C++17 | 3038 ms | 14680 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define all(s) s.begin(), s.end()
#define lb(s, a) lower_bound(all(s), (a)) - s.begin()
#define ii pair <int, int>
#define fi first
#define se second
using namespace std;
typedef long long ll;
const int ar = 2e5+2;
const ll mod = 1e9+7;
const int oo = 1e9;
int n, m;
int timeDfs = 0, scc = 0;
int low[ar], num[ar];
int id[ar];
bool deleted[ar];
vector <int> tplt[ar];
struct set3 {
int v, i, t;
};
vector <set3> g[ar];
stack <int> st;
void dfs(int u, int p) {
num[u] = low[u] = ++timeDfs;
st.push(u);
Compilation message (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... |