一、题目描述
求有多少长为n的元素是
二、解题思路
题目中说找到一个序列,只需要其中的一个子序列满足条件即可,我们设其中选中作为与运算和计算的元素有
我们先考虑不参与运算的情况,在不参与运算的数字则可以理解为一定无法作为使用条件的,其中显然当二进制位中最后一位为
接下来考虑参与运算的情况,考虑何时条件不成立?很显然当
因此一共有
综上所述,枚举
三、AC代码
#include <bits/stdc++.h> using namespace std; typedef long long ll; ll n,m,q; const int N = 5010; // const int mod = 1e9 + 7; int c[N][N]; void init(){ for(int i = 0;i<N;i++){ for(int j = 0;j<= i;j++){ if(!j) c[i][j] = 1; else c[i][j] = (c[i-1][j] + c[i-1][j-1]) % q; } } } ll qmi(ll a,ll b,ll p){ ll res = 1 % p; while(b){ if(b & 1) res = res * a % p; a = (ll)a * a % p; b >>= 1; } return res; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin >> n >> m >> q; init(); ll sum = 0; for(int k = 1;k<=n;k++){ sum = (sum + c[n][k] * qmi(qmi(2,k,q) - 1,m - 1,q) % q * qmi(2,(m-1) * (n - k),q)) % q; } cout << sum << endl; // system("pause"); return 0; }