当前位置:网站首页>F.金玉其外矩阵(构造)
F.金玉其外矩阵(构造)
2022-08-04 14:09:00 【Harris-H】
F.金玉其外矩阵(构造)
不可能的情况就是矩阵长度分别整除,显然与2矛盾。
否则有解,考虑每个子矩阵右上角放负数,然后和为-1。最后肯定有多的行,直接正数即可。
选定的基数 m x mx mx要大于 n h × m w \dfrac{n}{h}\times \dfrac{m}{w} hn×wm,保证最终和为正数。
#include<bits/stdc++.h>
using namespace std;
long long n,m,h,w;
int main()
{
cin>>n>>m>>h>>w;
if(n%h==0&&m%w==0)
{
puts("N");
return 0;
}
int mx = (n/h)*(m/w)+1;
puts("Y");
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
{
if(i%h==0&&j%w==0)
{
printf("%d ",-mx*w*h+(mx-1));
}
else printf("%d ",mx);
}
printf("\n");
}
}
边栏推荐
猜你喜欢
[Niu Ke brush questions-SQL big factory interview questions] NO5. Analysis of a treasure store (e-commerce model)
MPLS experiment
人像分割技术解析与应用
Interviewer: How to view files containing abc string in /etc directory?
如何通过使用“缓存”相关技术,解决“高并发”的业务场景案例?
七夕邂逅爱,那人一定在
Button control switch 4017 digital circuit chip
How to play the Tower of Hanoi
This article sorts out the development of the main models of NLP
相似文本聚类与调参
随机推荐
CCF GLCC officially opened | Kyushu Cloud open source experts bring generous bonuses to help universities promote open source
化繁为简,聊一聊复制状态机系统架构抽象
MySQL【窗口函数】【共用表表达式】
信创是什么意思?涉及哪些行业?为什么要发展信创?
Win11勒索软件防护怎么打开?Win11安全中心勒索软件防护如何设置
《C 陷阱与缺陷 》阅读概要
错误 AttributeError type object 'Callable' has no attribute '_abc_registry' 解决方案
记录都有哪些_js常用方法总结
Kyushu Cloud attended the Navigator Online Forum to discuss the current status, challenges and future of 5G MEC edge computing
Lixia Action | Kyushu Yunzhang Jinnan: Open source is not a movement for a few people, popularization is the source
odoo15 大部分模块都用的附件整理成一独立模块
字符串类的设计与实现_C语言字符串编程题
"Social Enterprises Conducting Civilian Personnel Training Specifications" group standard on the shelves of Xinhua Bookstore
Unity插件:使用PopulationSystem制作行走交流的路人
小 P 周刊 Vol.13
ACL 2022 | 社会科学理论驱动的言论建模
阴影初始化【5】
卷积神经网络 基础
化算力为战力:宁夏中卫的数字化转型启示录
leetcode 48. Rotate Image (Medium)