CodeForces 992C Nastya and a Wardrobe

Nastya received a gift on New Year — a magic wardrobe. It is magic because in the end of each month the number of dresses in it doubles (i.e. the number of dresses becomes twice as large as it is in the beginning of the month).

Unfortunately, right after the doubling the wardrobe eats one of the dresses (if any) with the 50% probability. It happens every month except the last one in the year.

Nastya owns x dresses now, so she became interested in the expected number of dresses she will have in one year. Nastya lives in Byteland, so the year lasts for k + 1 months.

Nastya is really busy, so she wants you to solve this problem. You are the programmer, after all. Also, you should find the answer modulo 109 + 7, because it is easy to see that it is always integer.

Input

The only line contains two integers x and k (0 ≤ x, k ≤ 1018), where x is the initial number of dresses and k + 1 is the number of months in a year in Byteland.

Output

In the only line print a single integer — the expected number of dresses Nastya will own one year later modulo 109 + 7.

Examples

input

Copy

2 0

output

Copy

4

input

Copy

2 1

output

Copy

7

input

Copy

3 2

output

Copy

21

Note

In the first example a year consists on only one month, so the wardrobe does not eat dresses at all.

In the second example after the first month there are 3 dresses with 50% probability and 4 dresses with 50% probability. Thus, in the end of the year there are 6 dresses with 50% probability and 8 dresses with 50% probability. This way the answer for this test is (6 + 8) / 2 = 7.

主要注意一下:求2^n用快速幂求余,就不会超时;

代码如下:

#include <cstdio>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <cstring>
using namespace std;
typedef long long ll;
const int MOD=1e9+7;
ll qow( ll a, ll b ) {
    ll ans = 1;
    a = a % MOD;
    while(b) {
        if( b % 2 == 1 ) {
            ans = ( ans * a ) % MOD;
        }
        a = ( a * a ) % MOD;
        b /= 2;
    }
    return ans;
}
int main(){
  ll x,k;
  ll sum;
  while(scanf("%lld %lld",&x,&k)!=EOF){
  sum=0;
  if(x==0) {
  printf("0\n");
  continue;
}
  x=x%MOD;    
  printf("%lld\n",(((2*x-1)*qow(2,k)+MOD)%MOD+1+MOD)%MOD);
}
return 0;
}

增加一个小知识:

有时当使用cin,cout出现TLE错误时可以加上:

std::ios::sync_with_stdio(false)

用来优化cin,cout以提速;

猜你喜欢

转载自www.cnblogs.com/jianqiao123/p/11364652.html
今日推荐