4719: Iterated Linear Function 迭代线性函数

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:3 通过:3

题目描述

考虑一个线性函数 f(x) = Ax + B。让我们定义 g(0)(x) = x 和 g(n)(x) = f(g(n - 1)(x)) 对于 n > 0。对于给定的整数值 A, B, nand x 找到 g(n)(x) 模 109 + 7 的值。
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 A, B, n and x find the value of g(n)(x) modulo 109+7.
Input
The only line contains four integers A, B, n 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 long integer 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

输入格式

唯一的行包含四个整数 A、B、n 和 x(1 ≤ A、B、x ≤ 109、1 ≤ n ≤ 1018) — 问题语句中的参数。

请注意,给定的值 n 可能太大,因此应使用 64 位整数类型来存储它。在C++中,您可以使用长整型类型,在 Java 中可以使用长整型。

输出格式

打印唯一的整数 s — 值 g(n)(x) 模 109 + 7。

输入样例 复制

3 4 1 1

输出样例 复制

7