# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
510027 | haxorman | Paths (BOI18_paths) | C++14 | 476 ms | 208456 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>
using namespace std;
#define int long long
const int mxN = 3e5 + 7;
const int mxK = 39;
int n, m, k, color[mxN], dp[mxN][mxK][2];
vector<int> graph[mxN];
int dfs(int u, int mask, bool sz) {
if (dp[u][mask][sz]) {
return dp[u][mask][sz];
}
if (sz) {
dp[u][mask][sz] = 1;
}
for (auto v : graph[u]) {
if (!(mask & (1 << color[v]))) {
dp[u][mask][sz] += dfs(v, mask | (1 << color[v]), 1);
}
}
return dp[u][mask][sz];
}
int32_t main() {
# | 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... |