码迷,mamicode.com
首页 >  
搜索关键字:given a n n matrix    ( 24496个结果
旋转图像
此博客链接: 旋转图像 题目链接:https://leetcode-cn.com/problems/rotate-image/ 题目 给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。 你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 ...
分类:其他好文   时间:2021-02-09 11:47:06    阅读次数:0
codeforces 1004 D. Sonya and Matrix 构造
原题地址:D. Sonya and Matrix 题目大意 称一个$n*m$的矩阵,里面恰好只有一个$0$,且其他所有位置上的值恰好等于此位置到$0$点曼哈顿距离的矩阵为菱形矩阵.现在给出一个无序的长度为$t$的数组,构造一个菱形矩阵,所有元素恰好使用一次,或输出无解. 思路 这个构造一上手都没什么 ...
分类:其他好文   时间:2021-02-08 12:19:48    阅读次数:0
February Challenge 2021 Division 1
Team Name(2.5) Prime Game(2.6) XOR Sums(2.7) Another Tree with Number Theory Multiple Games Cell Shell Bash Matrix Dream and the Multiverse Cut the Ca ...
分类:其他好文   时间:2021-02-08 12:12:42    阅读次数:0
Matrix Chain Multiplication UVA - 442
Suppose you have to evaluate an expression like ABCDE where A,B,C,D and E are matrices. Since matrix multiplication is associative, the order in which ...
分类:其他好文   时间:2021-02-08 11:54:10    阅读次数:0
0071. Simplify Path (M)
Simplify Path (M) 题目 Given a string path, which is an absolute path (starting with a slash '/') to a file or directory in a Unix-style file system, co ...
分类:其他好文   时间:2021-02-06 11:56:45    阅读次数:0
116. Populating Next Right Pointers in Each Node
仅供自己学习 题目: You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the foll ...
分类:其他好文   时间:2021-02-04 12:10:58    阅读次数:0
leetcode-剑指04-OK
// language c // 剑指04 // https://leetcode-cn.com/problems/er-wei-shu-zu-zhong-de-cha-zhao-lcof/ bool findNumberIn2DArray(int** matrix, int matrixSize, ...
分类:其他好文   时间:2021-01-30 12:17:05    阅读次数:0
1680. Concatenation of Consecutive Binary Numbers
Given an integer n, return the decimal value of the binary string formed by concatenating the binary representations of 1 to n in order, modulo 109 + ...
分类:其他好文   时间:2021-01-29 11:41:16    阅读次数:0
b_lc_搜索二维矩阵 II(二分 / 双指针)
每行的元素从左到右升序排列;每列的元素从上到下升序排列。找target是否在矩阵中 方法一:感觉跟问题I没啥区别啊! func searchMatrix(g [][]int, tar int) bool { n, m := len(g), len(g[0]) i, j := 0, m-1 for ; ...
分类:其他好文   时间:2021-01-28 12:14:07    阅读次数:0
F. Unusual Matrix 题解(思维)
题目链接 题目大意 给你两个01n*n矩阵(n<=1e3) a,b 你可以对a进行任意横和列的异或操作 即可以对a的任意行和任意列进行整体对1异或操作 判断是否可以将a矩阵变成b矩阵 题目思路 其实很简单。。。 很明显,操作的顺序不会影响最终的结果,而且多次同一个操作也没有意义(通过xor的属性) ...
分类:其他好文   时间:2021-01-27 13:23:52    阅读次数:0
24496条   上一页 1 ... 10 11 12 13 14 ... 2450 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!