이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "circuit.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
using ll = long long;
const int MOD = (int)1e9 + 2022;
int N, M;
vector<int> A;
vector<vector<int> > adj;
void init(int N, int M, vector<int> P, vector<int> A) {
::N = N;
::M = M;
::A = A;
adj.resize(N + M);
for (int i = 1; i < N + M; i++) {
adj[P[i]].pb(i);
}
}
int count_ways(int L, int R) {
for (int i = L - N; i <= R - N; i++) {
A[i] = !A[i];
}
vector<int> tot_mem(N + M, -1), dp_mem(N + M, -1);
function<int(int)> tot = [&](int u) {
if (tot_mem[u] != -1) {
return tot_mem[u];
}
if (u >= N) {
return tot_mem[u] = 1;
}
int ret = (int)(adj[u].size());
for (auto v : adj[u]) {
ret = ((ll)ret * (ll)tot(v)) % MOD;
}
return tot_mem[u] = ret;
};
function<int(int)> dp = [&](int u) {
if (dp_mem[u] != -1) {
return dp_mem[u];
}
if (u >= N) {
return dp_mem[u] = A[u - N];
}
vector<int> sub_dp((int)adj[u].size() + 1, 0);
sub_dp[0] = 1;
for (auto v : adj[u]) {
vector<int> new_sub_dp((int)adj[u].size() + 1);
for (int i = 0; i <= (int)adj[u].size(); i++) {
new_sub_dp[i] = ((i ? (ll)sub_dp[i - 1] * dp(v) : 0ll) % MOD + (ll)sub_dp[i] * ((ll)tot(v) - dp(v)) % MOD) % MOD;
if (new_sub_dp[i] < 0) {
new_sub_dp[i] += MOD;
}
}
sub_dp = new_sub_dp;
}
int ret = 0;
for (int i = 0; i <= (int)adj[u].size(); i++) {
ret = (ret + (ll)i * sub_dp[i] % MOD) % MOD;
}
return dp_mem[u] = ret;
};
return dp(0);
}
# | 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... |
# | 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... |