Submission #826173

# Submission time Handle Problem Language Result Execution time Memory
826173 2023-08-15T10:54:14 Z LittleCube Digital Circuit (IOI22_circuit) C++17
0 / 100
483 ms 7732 KB
#include "circuit.h"
#include <bits/stdc++.h>
#define ll long long
using namespace std;

const ll mod = 1'000'002'022;
namespace
{
  int N, M;
  vector<int> P, A, c;
  vector<int> child[200005];
  ll zero[200005], one[200005];
}

void init(int N, int M, vector<int> P, vector<int> A)
{
  ::N = N;
  ::M = M;
  ::P = P;
  ::A = A;
  c.resize(N);
  for (int i = 1; i < N + M; i++)
    c[P[i]]++, child[P[i]].emplace_back(i);
}

int count_ways(int L, int R)
{
  L -= N, R -= N;
  for (int i = L; i <= R; i++)
    A[i] ^= 1;
  for (int i = L; i <= R; i++)
    if (A[i] == 1)
      zero[N + i] = 0, one[N + i] = 1;
    else
      zero[N + i] = 1, one[N + i] = 0;
  for (int i = P[L]; i >= 0; i = P[i])
  {
    int K = child[i].size();
    vector<ll> dp(K + 1, 0);
    dp[0] = 1;
    for (auto j : child[i])
      for (int k = K - 1; k >= 0; k--)
      {
        dp[k + 1] = (dp[k + 1] + dp[k] * one[j]) % mod;
        dp[k] = (dp[k] * zero[j]) % mod;
      }
    zero[i] = one[i] = 0;
    for (int k = 0; k <= K; k++)
    {
      zero[i] = (zero[i] + (K - k) * dp[k]) % mod;
      one[i] = (one[i] + k * dp[k]) % mod;
    }
  }
  return one[0];
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4936 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4944 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4936 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 483 ms 7732 KB 1st lines differ - on the 1st token, expected: '431985922', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 483 ms 7732 KB 1st lines differ - on the 1st token, expected: '431985922', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4944 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4936 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4936 KB 1st lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -