codeforce_894B_数学脑洞题

来源:互联网 发布:李杰灵的淘宝店 编辑:程序博客网 时间:2024/06/05 04:14

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.

Sample Input
Input
1 1 -1
Output
1
Input
1 3 1
Output
1
Input
3 3 -1
Output
16
Hint
In the first example the only way is to put -1 into the only block.

In the second example the only way is to put 1 into every block.

mean
每一行给你n,m,k;
问你每行每列成绩的方案有多少种

所有情况都可以由最后一行一列来调成想要的值所以由2^(n-1)*(m-);
但是有特殊,就是奇偶性不同时k=-1,1奇1偶奇数那个一定要有奇数个-1那么总共有偶数个-1,但实际只要奇数个-1

#include<bits/stdc++.h>#define ll long longconst ll mod=(ll)1000000007;using namespace std;ll solve(ll a,ll b){    ll ans=1;    a%=mod;    while(b)    {        if(b&1) ans=ans*a%mod;        a=a*a%mod;        b>>=1;    }    return ans;}int main(){    ll n ,m ,k;    while(cin>>n>>m>>k)    {        if(k==-1&&(n+m)%2)            puts("0");        else        {            ll ans=solve(2,n-1);            cout<<solve(ans,m-1)<<endl;        }    }    return 0;}
原创粉丝点击