问题

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3881 访问。

给定一个初始元素全部为 0,大小为 m*n 的矩阵 M 以及在 M 上的一系列更新操作。

操作用二维数组表示,其中的每个操作用一个含有两个正整数 a 和 b 的数组表示,含义是将所有符合 0 <= i < a 以及 0 <= j < b 的元素 M[i][j] 的值都增加 1。

在执行给定的一系列操作后,你需要返回矩阵中含有最大整数的元素个数。

输入: 

m = 3, n = 3

operations = [[2,2],[3,3]]

输出: 4

解释: 

初始状态, M = 

[[0, 0, 0],

 [0, 0, 0],

 [0, 0, 0]]

执行完操作 [2,2] 后, M = 

[[1, 1, 0],

 [1, 1, 0],

 [0, 0, 0]]

执行完操作 [3,3] 后, M = 

[[2, 2, 1],

 [2, 2, 1],

 [1, 1, 1]]

M 中最大的整数是 2, 而且 M 中有4个值为2的元素。因此返回 4。

注意:

m 和 n 的范围是 [1,40000]。

a 的范围是 [1,m],b 的范围是 [1,n]。

操作数目不超过 10000。


Given an m * n matrix M initialized with all 0's and several update operations.

Operations are represented by a 2D array, and each operation is represented by an array with two positive integers a and b, which means M[i][j] should be added by one for all 0 <= i < a and 0 <= j < b.

You need to count and return the number of maximum integers in the matrix after performing all the operations.

Input: 

m = 3, n = 3

operations = [[2,2],[3,3]]

Output: 4

Explanation: 

Initially, M = 

[[0, 0, 0],

 [0, 0, 0],

 [0, 0, 0]]

After performing [2,2], M = 

[[1, 1, 0],

 [1, 1, 0],

 [0, 0, 0]]

After performing [3,3], M = 

[[2, 2, 1],

 [2, 2, 1],

 [1, 1, 1]]

So the maximum integer in M is 2, and there are four of it in M. So return 4.

Note:

The range of m and n is [1,40000].

The range of a is [1,m], and the range of b is [1,n].

The range of operations size won't exceed 10,000.


示例

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3881 访问。

public class Program {

    public static void Main(string[] args) {
var m = 3;
var n = 3;
var ops = new int[,] { { 2, 2 }, { 3, 3 } }; var res = MaxCount(m, n, ops);
Console.WriteLine(res); Console.ReadKey();
} private static int MaxCount(int m, int n, int[,] ops) {
//该题千万不要使用暴力解法,肯定TLE
//如果操作为空,则直接返回所有0的数量
if(ops.Length == 0) return m * n;
//分别记录一维和二维第一个数
int minOne = ops[0, 0];
int minTwo = ops[0, 1];
//循环
for(var i = 0; i < ops.GetLength(0); i++) {
//找到最小值
minOne = Math.Min(ops[i, 0], minOne);
minTwo = Math.Min(ops[i, 1], minTwo);
}
//一维和二维的最小值的乘积即为该题的解
return minOne * minTwo;
} }

以上给出1种算法实现,以下是这个案例的输出结果:

该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/3881 访问。

4

分析:

显而易见,以上算法的时间复杂度为:  。

最新文章

  1. Hyper-V1:创建和管理虚拟机
  2. [LeetCode] Non-overlapping Intervals 非重叠区间
  3. java-collections.sort异常Comparison method violates its general contract!
  4. 16.C语言中数据类型的本质含义是:表示一个内存格子的长度和解析方法。
  5. JavaScript进阶(二)
  6. linux下mysql安装、目录结构、配置
  7. SQL DEVELOPER工具找不到database时的解决
  8. select multiple images in Android Gallery
  9. SQL Server附加数据库文件出错
  10. R语言记录程序运行的时间
  11. SPRING IN ACTION 第4版笔记-第四章ASPECT-ORIENTED SPRING-005-定义切面使用@Aspect、@EnableAspectJAutoProxy、&lt;aop:aspectj-autoproxy&gt;
  12. NYOJ-104最大和
  13. C++内存分配的五种方法
  14. linux shadow破解
  15. 在使用cognos时遇到的问题记录帖
  16. tooltip 鼠标移动上去出现图片或文字与title大同小异
  17. sshpass做秘钥分发,ansible做自动化运维工具
  18. Tomcat 设置开机自启
  19. 【模板小程序】任意长度非负十进制数转化为二进制(java实现)
  20. Codeforces Round #467 (Div. 2) B. Vile Grasshoppers

热门文章

  1. python利用selenium(webdriver chrome)模拟登陆获取cookie
  2. Oracle版本发布规划 (文档 ID 742060.1)
  3. vant ui 吸顶组件慎用 2020-1-15
  4. 05 . ELK Stack+Redis日志收集平台
  5. 【Python】Async异步等待简单例子理解
  6. 【Laravel】使用 Laravel Excel 实现 Excel/CSV 文件导入导出功能
  7. 解惑,什么是data-attribute ?
  8. linux root 与普通用户之间的切换
  9. 哇咔咔干货来啦:PowerJob 原理剖析之 Akka Toolkit
  10. PHP xml_parser_free() 函数