日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Hdoj 2604

發(fā)布時間:2023/12/8 编程问答 47 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Hdoj 2604 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

原題鏈接

描述

Queues and Priority Queues are data structures which are known to most computer scientists. The Queue occurs often in our daily life. There are many people lined up at the lunch time. Now we define that ‘f’ is short for female and ‘m’ is short for male. If the queue’s length is L, then there are 2L numbers of queues. For example, if L = 2, then they are ff, mm, fm, mf . If there exists a subqueue as fmf or fff, we call it O-queue else it is a E-queue.
Your task is to calculate the number of E-queues mod M with length L by writing a program.

輸入

Input a length L (0 <= L <= 10e6) and M.

輸出

Output K mod M(1 <= M <= 30) where K is the number of E-queues with length L.

樣例輸入

3 8
4 7
4 8

樣例輸出

6
2
1

思路

首先是數(shù)學(xué)上找出遞推關(guān)系式$ a_{n} = a_{n-1} + a_{n-3} + a_{n-4}, n > 4 $
接下來當(dāng)然可以去解通項,不過略麻煩而且不好算,故直接構(gòu)建矩陣,用矩陣快速冪。
\[ \left[ \begin{matrix} a_{n} & a_{n-1} & a_{n-2} & a_{n-3} \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \end{matrix} \right] = \left[ \begin{matrix} a_{n-1} & a_{n-2} & a_{n-3} & a_{n-4} \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \end{matrix} \right] \left[ \begin{matrix} 1 & 1 & 0 & 0 \\ 1 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \\ 1 & 0 & 0 & 0 \end{matrix} \right] \]

代碼

#include <cstdio> #include<cstring> #define ll long long #define maxn 4 using namespace std;int k, mod;struct Mat {ll f[maxn][maxn];void cls(){memset(f, 0, sizeof(f));}//全部置為0 Mat() {cls();}friend Mat operator * (Mat a, Mat b){Mat res;for(int i = 0; i < maxn; i++) for(int j = 0; j < maxn; j++)for(int k = 0; k < maxn; k++)(res.f[i][j] += a.f[i][k] * b.f[k][j]) %= mod;return res;} };Mat quick_pow(Mat a) { Mat ans;for(int i = 0; i < maxn; i++) ans.f[i][i] = 1;int b = k;while(b != 0) {if(b & 1) ans = ans * a;b >>= 1;a = a * a;}return ans; }int main() {Mat A, B;B.f[0][0] = 9; B.f[0][1] = 6; B.f[0][2] = 4; B.f[0][3] = 2;A.f[0][0] = A.f[0][1] = A.f[1][2] = A.f[2][0] = A.f[2][3] = A.f[3][0] = 1;while(~scanf("%d %d", &k, &mod)){Mat C;if(k <= 4) {printf("%d\n", B.f[0][4-k] % mod); continue;}k -= 4;C = quick_pow(A);C = B * C;printf("%d\n", C.f[0][0]);}return 0; }

轉(zhuǎn)載于:https://www.cnblogs.com/HackHarry/p/8391899.html

總結(jié)

以上是生活随笔為你收集整理的Hdoj 2604的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。