the solution of Gym102222I

Revision en32, by tarjen, 2022-05-02 07:22:04

102222I - Bubble Sort

2018-2019 ACM-ICPC, China Multi-Provincial Collegiate Programming Contest

We define $$$A$$$ is the permutation of n, and $$$B$$$ is a sequence of n.

$$$B_i$$$ is defined as the number of subscripts that satisfy the condition

$$$ k<i ~and~ A_k>A_i $$$

Obviously,after a round of bubbling,$$$B_i$$$will minus one (if $$$B_i>0$$$), and $$$A_i$$$ will also move forward one space (i--)(although this is useless).

We consider to use sequence $$$B$$$ to solve the problem, we first prove that for every valid sequence $$$B$$$, there is exactly one permutation $$$A$$$ corresponding to it.

We consider how to infer $$$A$$$ from $$$B$$$.

It is very obvious that $$$A_n$$$ (the length of the permutation is n) can be directly infered by $$$B_n$$$, and $$$A_{n-1}$$$ is also easily to know if $$$A_n$$$ is known,and so on. So as long as $$$B$$$ is legal, there is an $$$A$$$ permutation obtained, certificated.

That is to say, for each bubbling, every $$$B_i$$$ greater than $$$0$$$ is decremented by one, and equal to $$$0$$$, it remains unchanged.

The transformation of $$$B$$$ is easy to stimulate by the conclusion (Obviously,...).

So we only need to calculate the legal number of sequence of $$$B$$$.

Consider what final states are legal:

  1. All $$$B_i=0$$$ (ie $$$A$$$ is ordered)

  2. There is a consecutive subsequence of $$$B_i=1$$$ in the permutation, and the rest are 0, such as 0 0 1 1 0 (1 4 2 3 5)

  3. There is only one $$$B_i!=0$$$ in the permutation, and the others are 0, such as 0 0 2 0 0 (2 3 1 4 5)

I think it is easy to use Dynamic programming to solve this problem, set 3 states is ok.


memset(dp,0,sizeof(dp)); int ans2=0; cin>>n>>m>>mod; dp[0][0]=1; for(int i=1;i<=n;i++){ if(i<=m+1){ (dp[i][0]+=dp[i-1][0]*(i))%=mod; } else{ (dp[i][0]+=dp[i-1][0]*(m+1))%=mod; (dp[i][1]+=dp[i-1][0]+dp[i-1][1])%=mod; (dp[i][2]+=dp[i-1][1]*(m+1)+dp[i-1][2]*(m+1)+dp[i-1][0]*max(0ll,i-1-(m+1)))%=mod; } } int ans=0; for(int i=0;i<3;i++)ans+=dp[n][i]; cout<<"Case #"<<ts<<": "<<ans%mod<<"\n";

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en32 English tarjen 2022-05-02 07:22:04 1 Tiny change: 'ously,...)\n\nSo we ' -> 'ously,...).\n\nSo we '
en31 English tarjen 2022-05-02 07:21:35 6 Tiny change: 'stimulate ,use the concl' -> 'stimulate by the concl'
en30 English tarjen 2022-05-02 07:20:31 86
en29 English tarjen 2022-05-01 14:50:17 8
en28 English tarjen 2022-05-01 14:47:45 4 Tiny change: 'es is ok\n```\n\n ' -> 'es is ok\n\n\n```\n\n '
en27 English tarjen 2022-05-01 14:46:00 13
en26 English tarjen 2022-05-01 14:45:26 14
en25 English tarjen 2022-05-01 14:12:32 2 Tiny change: 'on $$ k<i and Ak>Ai $$\' -> 'on $$ k<i ~and~ Ak>Ai $$\'
en24 English tarjen 2022-05-01 14:11:53 4 Tiny change: 'on $$ k<i & Ak>Ai $$\' -> 'on $$ k<i and Ak>Ai $$\'
en23 English tarjen 2022-05-01 14:11:30 2 Tiny change: 'ondition $ k<i & Ak>Ai $\n\nObvio' -> 'ondition $$ k<i & Ak>Ai $$\n\nObvio'
en22 English tarjen 2022-05-01 14:09:58 2 Tiny change: 'ion $ k<i ~ Ak>Ai $\n' -> 'ion $ k<i & Ak>Ai $\n'
en21 English tarjen 2022-05-01 14:09:31 5 Tiny change: 'tion $ k<i&&Ak>Ai $\n\' -> 'tion $ k<i ~ Ak>Ai $\n\'
en20 English tarjen 2022-05-01 14:07:28 3
en19 English tarjen 2022-05-01 14:06:52 100
en18 English tarjen 2022-05-01 14:05:06 4 Tiny change: '`Bn`, and `A n-1` is also e' -> '`Bn`, and $A n-1$ is also e'
en17 English tarjen 2022-05-01 13:48:05 135
en16 English tarjen 2022-05-01 13:38:40 39
en15 English tarjen 2022-05-01 13:37:35 26 Tiny change: ' bubbling,the number of k`Ak>Ai&&k>i` will minus' -> ' bubbling,`Bi`will minus'
en14 English tarjen 2022-05-01 13:35:57 47
en13 English tarjen 2022-05-01 13:32:50 15
en12 English tarjen 2022-05-01 13:28:08 2 Tiny change: 'm:102222I][contest:1' -> 'm:102222I]\n[contest:1'
en11 English tarjen 2022-05-01 13:27:34 16 Tiny change: 'm:102222I]\n\n\nObv' -> 'm:102222I][contest:102222]\n\n\nObv'
en10 English tarjen 2022-05-01 13:25:59 0 (published)
en9 English tarjen 2022-05-01 13:25:32 208
en8 English tarjen 2022-05-01 13:21:39 126
en7 English tarjen 2022-05-01 13:16:46 1166
en6 English tarjen 2022-05-01 13:08:15 192
en5 English tarjen 2022-05-01 13:04:38 6
en4 English tarjen 2022-05-01 13:04:07 28 Tiny change: '\n\n[problem' -> '\n[problem'
en3 English tarjen 2022-05-01 13:02:31 104
en2 English tarjen 2022-05-01 13:01:06 30 Tiny change: '[contesthttpscodeforces.comgym102222]\n\n给定`n,' -> '[problem:102222I]\n\n给定`n,'
en1 English tarjen 2022-05-01 13:00:17 1193 Initial revision (saved to drafts)