# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
45120 | model_code | Shell (info1cup18_shell) | C++17 | 439 ms | 35248 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 <cstdio>
#include <algorithm>
#include <vector>
#include <cassert>
#define MOD 1000000007LL
using namespace std;
int n, m, p;
vector <int> g[1000010];
int dp[1000010], v[1000010];
long long nr[1000010];
void dfs (int nod)
{
if (nod == n)
{
dp[nod] = 1;
nr[nod] = 1LL;
if (nod == v[ p - dp[nod] + 1 ]) ++dp[nod];
return;
}
for (auto &it : g[nod])
{
if (dp[it] == 0) dfs (it);
if (dp[it] > dp[nod]) dp[nod] = dp[it], nr[nod] = nr[it];
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |