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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

等比数列二分求和

發(fā)布時(shí)間:2024/4/11 编程问答 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 等比数列二分求和 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

今天我們學(xué)習(xí)如何有效地求表達(dá)式的值。對(duì)于這個(gè)問題,用二分解決比較好。

?

(1)當(dāng)時(shí),

(2)當(dāng)時(shí),那么有

????

(3)當(dāng)時(shí),那么有

???

?

代碼:

#include <iostream> #include <string.h> #include <stdio.h>using namespace std; const int M = 1000000007; typedef long long LL;LL power(LL a,LL b) {LL ans = 1;a %= M;while(b){if(b & 1){ans = ans * a % M;b--;}b >>= 1;a = a * a % M;}return ans; }LL sum(LL a,LL n) {if(n == 1) return a;LL t = sum(a,n/2);if(n & 1){LL cur = power(a,n/2+1);t = (t + t * cur % M) % M;t = (t + cur) % M;}else{LL cur = power(a,n/2);t = (t + t * cur % M) % M;}return t; }int main() {LL a,n;while(cin>>a>>n)cout<<sum(a,n)<<endl;return 0; }



題目:http://poj.org/problem?id=3233

?

題意:矩陣求和

?

代碼:

#include <iostream> #include <string.h> #include <stdio.h>using namespace std; const int N = 35;struct Matrix {int m[N][N]; };Matrix I; int n,k,M;Matrix add(Matrix a,Matrix b) {Matrix c;for(int i=0; i<n; i++){for(int j=0; j<n; j++){c.m[i][j] = a.m[i][j] + b.m[i][j];c.m[i][j] %= M;}}return c; }Matrix multi(Matrix a,Matrix b) {Matrix c;for(int i=0; i<n; i++){for(int j=0; j<n; j++){c.m[i][j] = 0;for(int k=0; k<n; k++)c.m[i][j] += a.m[i][k] * b.m[k][j];c.m[i][j] %= M;}}return c; }Matrix power(Matrix A,int n) {Matrix ans = I,p = A;while(n){if(n & 1){ans = multi(ans,p);n--;}n >>= 1;p = multi(p,p);}return ans; }Matrix sum(Matrix A,int k) {if(k == 1) return A;Matrix t = sum(A,k/2);if(k & 1){Matrix cur = power(A,k/2+1);t = add(t,multi(t,cur));t = add(t,cur);}else{Matrix cur = power(A,k/2);t = add(t,multi(t,cur));}return t; }int main() {while(scanf("%d%d%d",&n,&k,&M)!=EOF){Matrix A;for(int i=0; i<n; i++){for(int j=0; j<n; j++){scanf("%d",&A.m[i][j]);A.m[i][j] %= M;I.m[i][j] = (i==j);}}Matrix ans = sum(A,k);for(int i=0; i<n; i++){for(int j=0; j<n; j++)printf("%d ",ans.m[i][j]);puts("");}}return 0; }


?

總結(jié)

以上是生活随笔為你收集整理的等比数列二分求和的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

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