AcWing 第127场周赛 构造矩阵

构造题目,考虑去除掉最后一行最后一列先进行考虑,假设除了最后一行和最后一列都已经排好了(你可以随便排),那么分析知最后一个数字由限制以外其他都已经确定了,无解的情况是k为-1

并且n,m的奇偶性不同其余均有解 并且方案数就是2**(n-1)*(m-1)%p 发现数很大,欧拉降幂

原式等价于2**(n-1)%(p-1)*(m-1)%(p-1) %p

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const int N = 2e5+10,p = 1e9+7;
ll n,m,k;

ll qmi(ll a,ll b,ll p){
	ll ans = 1;
	while(b){
		if(b&1)
		 ans = ans*a%p;
		b>>=1;
		a = a*a%p;
	}
	
	return ans;
}
void solve()
{
	cin>>n>>m>>k;
	if(k==-1&&(n%2!=m%2))cout<<-1;
	else{
		ll t = ((n-1)%(p-1))*((m-1)%(p-1));
		cout<<qmi(2,t,p);
	}
}

int main()
{
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int _;
	_ = 1;
	while(_--)solve();
	return 0;
}

贴一个y总的分析图片

当然你写两次快速幂也是一样的,这里也是知道你底数可以随便模这个性质

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const int N = 2e5+10,p = 1e9+7;
ll n,m,k;

ll qmi(ll a,ll b,ll p){
	ll ans = 1;
	while(b){
		if(b&1)
		 ans = ans*a%p;
		b>>=1;
		a = a*a%p;
	}
	
	return ans;
}
void solve()
{
	cin>>n>>m>>k;
	if(k==-1&&(n%2!=m%2))cout<<0;
	else{
		// ll t = ((n-1)%(p-1))*((m-1)%(p-1));
		// cout<<qmi(2,t,p);
		ll t = qmi(2,m-1,p);
		cout<<qmi(t,n-1,p);
	}
}

int main()
{
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int _;
	_ = 1;
	while(_--)solve();
	return 0;
}
相关推荐
山峰哥12 小时前
沉浸式翻译插件深度评测:打破语言壁垒的黑科技利器
数据结构·科技·算法·编辑器·办公
AI脚下的巨人12 小时前
机器人逆运动学:从SVD到IK算法
算法·机器人
郝学胜-神的一滴13 小时前
现代OpenGL窗口管理:GLFW从入门到实战
开发语言·c++·程序人生·图形渲染·个人开发
ゞ 正在缓冲99%…13 小时前
2025.9.28华为软开
算法·华为
Bona Sun13 小时前
单片机手搓掌上游戏机(十六)—pico运行fc模拟器之程序修改烧录
c语言·c++·单片机·游戏机
谁刺我心13 小时前
C++三种智能指针unique、shared、weak
开发语言·c++
9ilk14 小时前
【C++】 --- 哈希
c++·后端·算法·哈希算法
小邓   ༽14 小时前
50道C++编程练习题及解答-C编程例题
c语言·汇编·c++·编程练习·c语言练习题
报错小能手14 小时前
数据结构 定长顺序表
数据结构·c++
qq_4192032314 小时前
深浅拷贝、STL迭代器失效
c++·深浅拷贝·stl迭代器失效