Educational Codeforces Round 13-D. Iterated Linear Function

原题链接


g(n)(x)  = (A^n*x + (A^(n-1) + A^(n-2) + A^(n-3) + ...A) * B) % 1000000007


这个式子用快速幂,等比数列求和公式,费马小定理求乘法逆元,就可以解决

#include <bits/stdc++.h>
#define INF 1e9
using namespace std;
typedef long long ll;

ll solve(ll d, ll n, ll MOD){
	
	ll s = 1;
	while(n){
		if(n&1)
		  s = s * d % MOD;
		n /= 2;
		d = d * d % MOD;
	}
	return s;
}
int main(){
	
//	freopen("in.txt", "r", stdin);
	ll a, b, n, x, MOD = 1000000007;
	
	cin >> a >> b >> n >> x;
	if(a == 1){
		cout << (x + n % MOD * b) % MOD << endl;
	}
	else{
		ll sum;
		sum = solve(a, n, MOD);
		sum = sum * x % MOD;
		ll p1 = solve(a-1, MOD-2, MOD);
		ll p2 = (solve(a, n, MOD) - 1 + MOD) % MOD;
		sum = (sum + p1 * p2 % MOD * b% MOD) % MOD;
		cout << sum << endl;
	}
	return 0;
}

D. Iterated Linear Function
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Consider a linear function f(x) = Ax + B. Let's define g(0)(x) = x and g(n)(x) = f(g(n - 1)(x)) for n > 0. For the given integer values AB,n and x find the value of g(n)(x) modulo 109 + 7.

Input

The only line contains four integers ABn and x (1 ≤ A, B, x ≤ 109, 1 ≤ n ≤ 1018) — the parameters from the problem statement.

Note that the given value n can be too large, so you should use 64-bit integer type to store it. In C++ you can use the long longinteger type and in Java you can use long integer type.

Output

Print the only integer s — the value g(n)(x) modulo 109 + 7.

Examples
input
3 4 1 1
output
7
input
3 4 2 1
output
25
input
3 4 3 1
output
79

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值