Codeforces Round #447 (Div. 2) B. Ralph And His Magic Field(思维)

Description

Ralph has a magic field which is divided into n × m blocks. That is to say, there are n rows and m columns on the field. Ralph can put an integer in each block. However, the magic field doesn’t always work properly. It works only if the product of integers in each row and each column equals to k, where k is either 1 or -1.

Now Ralph wants you to figure out the number of ways to put numbers in each block in such a way that the magic field works properly. Two ways are considered different if and only if there exists at least one block where the numbers in the first way and in the second way are different. You are asked to output the answer modulo 1000000007 = 109 + 7.

Note that there is no range of the numbers to put in the blocks, but we can prove that the answer is not infinity.

Input

The only line contains three integers n, m and k (1 ≤ n, m ≤ 1018, k is either 1 or -1).

Output

Print a single number denoting the answer modulo 1000000007.

Examples

input
1 1 -1
output
1
input
1 3 1
output
1
input
3 3 -1
output
16

題目大意

在n*m得格子里放置整数,要求每一行每一列的乘积都为k,求有多少种不同的方法(%1000000007)。

解题思路

我们可以先留出最后一行和最后一列,因为无论前面n-1行和m-1列放置的乘积状态如何,我们都可以在最后一行(最后一列)乘以1或-1使其结果为k。所以放置的种类数即为 2(n1)(m1) 。直接(n-1)*(m-1)会爆ll,要两次快速幂计算结果。
特判:当k=-1时,如果n和m一个为偶数,一个为奇数结果为0,因为此时无法实现每一行每一列-1的个数为奇数个。

代码实现

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const ll mod=1e9+7;
ll quick_pow(ll a,ll b)
{
    ll ans=1;
    while(b>0)
    {
        if(b%2)
            ans=((ans%mod)*(a%mod))%mod;
        a=((a%mod)*(a%mod))%mod;
        b/=2;
    }
    return ans;
}
int main()
{
    ios::sync_with_stdio(false);
    ll k;
    ll n,m;
    cin>>n>>m>>k;
    if(k==-1&&(n%2)!=(m%2))
        cout<<"0"<<endl;
    else
        cout<<quick_pow(quick_pow(2,n-1),m-1)<<endl;
    return 0;
}

PS:可用降幂公式对指数先进行处理。
Ax mod p=Ax mod φ(p)+φ(p) mod p ,该题中 φ(p)=p1

ll t=((n-1)%(mod-1))*((m-1)%(mod-1))%(mod-1)+(mod-1);
cout<<quick_pow(2,t)<<endl;
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值