AGC016C +/- Rectangle(构造)

题目大意:给定H,W,h,w四个数,求是否满足矩阵的全部数之和和正数,h行w列之和为负数

如果h和w恰好是H,W的约数,则肯定不存在

否则肯定存在

只需要把h,w内每个元素填的足够大,然后小矩形的最后一个元素为负,且保持整个小矩形为负即可(可用不等式证明)

#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
long long Mat[505][505];
long long n, m, r, c;
int main()
{
    cin>>r>>c>>n>>m;
    for(int i = 1; i <= r; i++)
        for(int j = 1; j <= c; j++)
            Mat[i][j] = 1000;
    for(int i = n; i <= r; i += n)
        for(int j = m; j <= c; j += m)
            Mat[i][j] = -n*m*1000 + 999;
    long long sum = 0;
    for(int i = 1; i <= r; i++)
        for(int j = 1; j <= c; j++)
            sum += Mat[i][j];
    if(sum < 0) { cout<<"No"<<endl; }
    else {
        cout<<"Yes"<<endl;
        for(int i = 1; i <= r; i++){
            for(int j = 1; j <= c; j++)
                cout<<Mat[i][j]<<" ";
            cout<<endl;
        }
    }

}
时间: 2024-11-05 05:50:29

AGC016C +/- Rectangle(构造)的相关文章

AGC016C +/- Rectangle

题意简述:给\(H , W , h, w\).构造一个\(H*W\)的矩阵,满足矩阵元素之和为正数,且每个\(h*w\)的子矩阵元素之和是负数. 感觉是比较简单且比较巧妙的构造题,可惜自己还是太弱,没能做出来.orz wsq 首先考虑第一个样例给出的提示,我们可以在一般位置放1,在满足\(i\ \%\ h==0,j\ \%\ w==0\)的位置\((i,j)\)放\(-(w*h)\). 然后我们考虑有这么一种情况,就是剩下部分的1无法补满之前矩阵贡献的-1,如:\(H=1,W=4,h=1,w=3

hdu 1506 Largest Rectangle in a Histogram 构造

题目链接:HDU - 1506 A histogram is a polygon composed of a sequence of rectangles aligned at a common base line. The rectangles have equal widths but may have different heights. For example, the figure on the left shows the histogram that consists of rec

定义抽象类Shape,抽象方法为showArea(),求出面积并显示,定义矩形类Rectangle,正方形类Square,圆类 Circle,根据各自的属性,用showArea方法求出各自的面积,在main方法中构造3个对象,调用showArea方法。(体现多态)

实现多态的三个条件:1.要有继承2.要有抽象方法重写3.用父类指针(引用)指向子类对象 重载重写重定义的区别: 1.重载:在同一个类中进行; 编译时根据参数类型和个数决定方法调用; 子类无法重载父类; 父类同名方法被子类该方法覆盖. 2.重写:在父类和子类之间进行; 父类与子类方法有完全相同类型; 在运行时根据具体对象类型决定方法调用; 3.在重写中有抽象方法的会产生多态;没有使用抽象方法叫重定义 以下具体代码具体分析: package test3;abstract class Shape{ /

492. 构造矩形 Construct the Rectangle

For a web developer, it is very important to know how to design a web page's size. So, given a specific rectangular web page's area, your job by now is to design a rectangular web page, whose length L and width W satisfy the following requirements: 1

【LeetCode】84. Largest Rectangle in Histogram——直方图最大面积

Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram. Above is a histogram where width of each bar is 1, given height =[2,1,5,6,2,3]. The largest r

【最小矩形面积覆盖:凸包+旋转卡壳】UVA 10173 Smallest Bounding Rectangle

[最小矩形面积覆盖:凸包+旋转卡壳]UVA 10173 Smallest Bounding Rectangle 题目链接:UVA 10173 Smallest Bounding Rectangle 题目大意 给你n个点,求能够覆盖所有点集的最小矩形面积. 笔者的第2道凸包题目,凸包 + 旋转卡壳,实现点集的最小矩形面积覆盖问题 ">=0"写成"<=0"坑了我一下午!QAQ 说一下思路 ①Graham's Scan法构建凸包,时间复杂度O(nlogn) ②

【Swift初见】Swift构造过程

所谓构造过程是指在创建某个实例而进行的一系列准备过程.比如为实例中的属性设置初始值和执行其他初始化工作. 构造过程是通过构造器来实现的,其实每个构造器就可以看作是一个函数,只是这个函数是为了执行初始化的. 1.存储属性的初始赋值 以类和结构体的实例创建为例,在创建类和结构体实例的时候,需要给类和街头题的属性设置一个默认值,有两种方法: 1??在定义属性的时候设置默认值:2??在构造器中赋初值 无论是哪一种方法,他们的值都是被直接设置的,不会触发任何的属性观察器. 那么什么是构造器呢?其实在上面的

(数组)Largest Rectangle in Histogram(栈解问题)

Largest Rectangle in Histogram Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram. Above is a histogram where width of each bar is 1, given heigh

(每日算法)Leetcode --- Maximal Rectangle(最大子矩阵)

求在0-1矩阵中找出面积最大的全1矩阵 Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area. 首先,想使用遍历两次的暴力方法解决是不靠谱的,先打消这个念头. 这道题的解法灵感来自于 Largest Rectangle in Histogram 这道题,假设我们把矩阵沿着某一行切下来,然后把切的行作为底面,将自底面往上