AtCoder Regular Contest 058

Updated:

AtCoder Regular Contest 058

  • Review: 2020-07-06

Source codesPermalink

SolutionsPermalink

C - こだわり者いろはちゃん / Iroha’s ObsessionPermalink

Just try by n,n+1,. Since n104, we can stop before 20000.

D - いろはちゃんとマス目 / Iroha and a GridPermalink

Every path passes through (ha1,j)(ha,j). This j[b,w) is uniquely exists for every path. Thus, the answer is w1j=b((ha1)+jha1)((h1(ha))+(w1j)(h1(ha))).

D picture

E - 和風いろはちゃん / Iroha and HaikuPermalink

Assume 0-indexed.

How to preserve the last termsPermalink

We count the sequence which does not contain any XYZ.

We use bitwise memory. We describe that the previous term is k by 1 << k. For example, we mean that the last 3 terms are 2,3,1 by 101001(2). We convert {ai} into bit in this way. Then, we see the following properties.

  • Judge of XYZ: We define $haiku = (1 \mathbin{«} (Z - 1)) (1 \mathbin{«} (Z + Y - 1) (1 \mathbin{«} (Z + Y + X - 1))),andwedeterminebithasXYZifbit \& haiku = haiku$.
  • The way of preserving the last terms: We possess bit&mask, where mask=((1«X+Y+Z1)1). In other words, we save last X+Y+Z1 bits.

DP partPermalink

DefinitionPermalink

vector<vector<mint>> dp[i][j]= the number of the sequences which does not contain any XYZ, where the last terms are described by jB.

Initial statePermalink

dp[0][0]=1; otherwise 0.

AnswerPermalink

10njmaskdp[n][j].

TransitionPermalink

For i=0,,n0, for jmask, we execute as follows. If dp[i][j]=0, continue;. Otherwise, for k=1,,10, let nj=(j«k)|(1«(k1)). If nj contains haiku, continue;. Otherwise, we execute the following line. dp[i+1][nj&mask]+=dp[i][j].

F - 文字列大好きいろはちゃん / Iroha Loves StringsPermalink

OthersPermalink