AtCoder Regular Contest 058
Updated:
- Review: 2020-07-06
Source codesPermalink
SolutionsPermalink
C - こだわり者いろはちゃん / Iroha’s ObsessionPermalink
Just try by n,n+1,…. Since n≤104, we can stop before 20000.
D - いろはちゃんとマス目 / Iroha and a GridPermalink
Every path passes through (h−a−1,j)↦(h−a,j). This j∈[b,w) is uniquely exists for every path. Thus, the answer is w−1∑j=b((h−a−1)+jh−a−1)((h−1−(h−a))+(w−1−j)(h−1−(h−a))).
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+Z−1)−1). In other words, we save last X+Y+Z−1 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 j⊂B.
Initial statePermalink
dp[0][0]=1; otherwise 0.
AnswerPermalink
10n−∑j⊂maskdp[n][j].
TransitionPermalink
For i=0,…,n−0, for j⊂mask, we execute as follows. If dp[i][j]=0, continue;
. Otherwise, for k=1,…,10, let
nj=(j«k)|(1«(k−1)).
If nj contains haiku, continue;
. Otherwise, we execute the following line.
dp[i+1][nj&mask]+=dp[i][j].