luoguP3017Brownie Slicing
https://www.luogu.org/problem/P3017
题意
给你一个蛋糕,R行C列 ,每个点有巧克力碎屑(如下)
1 2 2 1
3 1 1 1
2 0 1 3
1 1 1 1
1 1 1 1
你要先横着切a-1刀,将蛋糕分为a块,然后对于每一块,分别竖着切b-1刀
将整个蛋糕分成a*b块,求巧克力屑最少的一块最多有多少屑
R,C≤500 N_ij≤4,000
A ≤ R , B ≤ C
分析
依旧是最多的 最少值 是多少(有点绕口
依旧满足二分性
依旧可以合理的check
(请自主思考
我们这里注意的是怎么check(k)
思路:按照题目说的,先横着切一块,然后再切出的一块内竖着合理地切成b块,如果不能合法切成b块,就把第一刀横着的往下挪,直到能够切成b块,最后判断横着切的次数是否合法,得出k是否合法。
优化: 二维前缀和(很容易想到吧...不解释了
#include<cstdio>
#include<algorithm>
using namespace std;
#define MAX 500+9
int R, C, a, b;
int arr, tmp[MAX*MAX], cnt;
int s[MAX][MAX]; //前缀和
int check(int k) {//最小的巧克力屑
int cuta = 0, now = 0;//目前切了几条 , 上一条在哪里
for(int i = 1; i <= R; i++) {
int cutb = 0, last = 0;//当前切了几块, 切的上一块在哪里
for(int j = 1; j <= C; j++)
if(s[i][j] - s[now][j] - s[i][last] + s[now][last] >= k) cutb++, last = j;//建议画图看看
if(cutb >= b) {
cuta++;
now = i;
}
}
return cuta >= a;
/*关于为什么这是>=: 我们这的if的意思是,只要当前块的和>=k,我们就切,
所以可能多切几刀,但这并不影响正确性: 你把后面多出来的几刀去掉,也只是使最后一块或最后一行额外的大,所以仍然合法 */
}
int main() {
scanf("%d%d%d%d",&R, &C, &a, &b);
for(int i = 1; i <= R; i++)
for(int j = 1; j <= C; j++) {
scanf("%d", &arr);
s[i][j] = s[i-1][j] + s[i][j-1] - s[i-1][j-1] + arr;
}
int l = 1,r = s[R][C], mid;
int ans = 0;
while(l <= r) {//让ans最大
mid = (l+r)>>1;
if(check(mid)) {
ans = mid;
l = mid+1;
} else {
r = mid-1;
}
}
printf("%d",ans);
}
luoguP3017Brownie Slicing的更多相关文章
- 从零开始学C++之虚函数与多态(一):虚函数表指针、虚析构函数、object slicing与虚函数
一.多态 多态性是面向对象程序设计的重要特征之一. 多态性是指发出同样的消息被不同类型的对象接收时有可能导致完全不同的行为. 多态的实现: 函数重载 运算符重载 模板 虚函数 (1).静态绑定与动态绑 ...
- BZOJ 2196: [Usaco2011 Mar]Brownie Slicing( 二分答案 )
二分答案就可以了.... ----------------------------------------------------------------------- #include<cst ...
- Numpy 笔记: 多维数组的切片(slicing)和索引(indexing)【转】
目录 切片(slicing)操作 索引(indexing) 操作 最简单的情况 获取多个元素 切片和索引的同异 切片(slicing)操作 Numpy 中多维数组的切片操作与 Python 中 lis ...
- Python学习--字符串slicing
Found this great table at http://wiki.python.org/moin/MovingToPythonFromOtherLanguages Python indexe ...
- ZOJ 3427 Array Slicing (scanf使用)
题意 Watashi发明了一种蛋疼(eggache) 语言 你要为这个语言实现一个 array slicing 函数 这个函数的功能是 有一个数组初始为空 每次给你一个区间[ l, r) 和 ...
- Object Slicing in C++
In C++, a derived class object can be assigned to base class, but the other way is not possible. cla ...
- [Python Cookbook] Numpy Array Slicing and Indexing
1-D Array Indexing Use bracket notation [ ] to get the value at a specific index. Remember that inde ...
- [Python] Slicing Lists
In addition to accessing individual elements from a list we can use Python's slicing notation to acc ...
- 《流畅的Python》 Sequence Hacking, Hashing and Slicing(没完成)
序列修改,散列和切片 基本序列协议:Basic sequence protocol: __len__ and __getitem__ 本章通过代码讨论一个概念: 把protocol当成一个正式接口.协 ...
随机推荐
- ODA: After Apply ODA 12.2.1.2.0 Patch, Unable to Create TableSpace Due to [ORA-15001: diskgroup "DATA" does not exist or is not mounted | ORA-15040: diskgroup is incomplete] (Doc ID 2375553.1)
ODA: After Apply ODA 12.2.1.2.0 Patch, Unable to Create TableSpace Due to [ORA-15001: diskgroup &quo ...
- Python:判断列表中含有字符串且组成新的列表打印输出-Dotest董浩
'''题一:判断列表中含有字符串且组成新的列表打印输出知识点:列表.列表的增删改查.for循环.if判断'''#@Author:Dotest软件测试#@QQ:1274057839names = ['D ...
- scipy中的coo_matrix函数
推荐直接看官方文档:https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.coo_matrix.html#scipy.sp ...
- go语言设计模式之builder
builder.go package builder type BuildProcess interface { SetWheels() BuildProcess SetSeats() BuildPr ...
- 03-Node.js学习笔记-系统模块path路径操作
3.1为什么要进行路径拼接 不同操作系统的路径分隔符不统一 /public/uploads/avatar window 上是 \ / 都可以 Linux 上是 / 3.2路径拼接语法 path.joi ...
- PAT甲级|1151 LCA in a Binary Tree 先序中序遍历建树 lca
给定先序中序遍历的序列,可以确定一颗唯一的树 先序遍历第一个遍历到的是根,中序遍历确定左右子树 查结点a和结点b的最近公共祖先,简单lca思路: 1.如果a和b分别在当前根的左右子树,当前的根就是最近 ...
- Day8 - Python基础8 异常处理、反射、单例模式
本节内容: 1:异常处理 2:反射 3:单例模式 1.异常处理 1.异常简介 在编程过程中为了增加友好性,在程序出现bug时一般不会将错误信息显示给用户,而是现实一个提示的页面,通俗来说就是不让用户 ...
- linux 库文件配置
linux 库文件配置 /etc/ld.so.conf 或 /etc/ld.so.conf.d/*.conf
- shell 下
一句话来概括shell shell是一个基于Linux内核和应用程序之间的一个解释器 Shell解释器 /bin/sh /bin/bash 目前多用的是bash /sbin/ ...
- dell服务器已有阵列新增的磁盘无法识别显示外来
问题描述: 今天遇到个插入新硬盘显示外来盘,然后不可用,然后电话问了一下戴尔的工程师 说需要清除一下原来磁盘的阵列信息之类的,才能识别到,这里就做一个笔记记录一下,顺便分享给有需要的朋友! 解决方法: ...