周赛292(单个题目)
This commit is contained in:
parent
1e47d983bf
commit
022f99fbfc
@ -0,0 +1,108 @@
|
||||
//<p>一个括号字符串是一个 <strong>非空</strong> 且只包含 <code>'('</code> 和 <code>')'</code> 的字符串。如果下面 <strong>任意</strong> 条件为 <strong>真</strong> ,那么这个括号字符串就是 <strong>合法的</strong> 。</p>
|
||||
//
|
||||
//<ul>
|
||||
// <li>字符串是 <code>()</code> 。</li>
|
||||
// <li>字符串可以表示为 <code>AB</code>(<code>A</code> 连接 <code>B</code>),<code>A</code> 和 <code>B</code> 都是合法括号序列。</li>
|
||||
// <li>字符串可以表示为 <code>(A)</code> ,其中 <code>A</code> 是合法括号序列。</li>
|
||||
//</ul>
|
||||
//
|
||||
//<p>给你一个 <code>m x n</code> 的括号网格图矩阵 <code>grid</code> 。网格图中一个 <strong>合法括号路径</strong> 是满足以下所有条件的一条路径:</p>
|
||||
//
|
||||
//<ul>
|
||||
// <li>路径开始于左上角格子 <code>(0, 0)</code> 。</li>
|
||||
// <li>路径结束于右下角格子 <code>(m - 1, n - 1)</code> 。</li>
|
||||
// <li>路径每次只会向 <strong>下</strong> 或者向 <strong>右</strong> 移动。</li>
|
||||
// <li>路径经过的格子组成的括号字符串是<strong> 合法</strong> 的。</li>
|
||||
//</ul>
|
||||
//
|
||||
//<p>如果网格图中存在一条 <strong>合法括号路径</strong> ,请返回 <code>true</code> ,否则返回 <code>false</code> 。</p>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>示例 1:</strong></p>
|
||||
//
|
||||
//<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/15/example1drawio.png" style="width: 521px; height: 300px;" /></p>
|
||||
//
|
||||
//<pre>
|
||||
//<b>输入:</b>grid = [["(","(","("],[")","(",")"],["(","(",")"],["(","(",")"]]
|
||||
//<b>输出:</b>true
|
||||
//<b>解释:</b>上图展示了两条路径,它们都是合法括号字符串路径。
|
||||
//第一条路径得到的合法字符串是 "()(())" 。
|
||||
//第二条路径得到的合法字符串是 "((()))" 。
|
||||
//注意可能有其他的合法括号字符串路径。
|
||||
//</pre>
|
||||
//
|
||||
//<p><strong>示例 2:</strong></p>
|
||||
//
|
||||
//<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/15/example2drawio.png" style="width: 165px; height: 165px;" /></p>
|
||||
//
|
||||
//<pre>
|
||||
//<b>输入:</b>grid = [[")",")"],["(","("]]
|
||||
//<b>输出:</b>false
|
||||
//<b>解释:</b>两条可行路径分别得到 "))(" 和 ")((" 。由于它们都不是合法括号字符串,我们返回 false 。
|
||||
//</pre>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>提示:</strong></p>
|
||||
//
|
||||
//<ul>
|
||||
// <li><code>m == grid.length</code></li>
|
||||
// <li><code>n == grid[i].length</code></li>
|
||||
// <li><code>1 <= m, n <= 100</code></li>
|
||||
// <li><code>grid[i][j]</code> 要么是 <code>'('</code> ,要么是 <code>')'</code> 。</li>
|
||||
//</ul>
|
||||
//<div><li>👍 15</li><li>👎 0</li></div>
|
||||
package leetcode.editor.cn;
|
||||
|
||||
// 2267:检查是否有合法括号字符串路径
|
||||
public class CheckIfThereIsAValidParenthesesStringPath {
|
||||
public static void main(String[] args) {
|
||||
Solution solution = new CheckIfThereIsAValidParenthesesStringPath().new Solution();
|
||||
// TO TEST
|
||||
}
|
||||
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public boolean hasValidPath(char[][] grid) {
|
||||
xl = grid.length;
|
||||
yl = grid[0].length;
|
||||
use = new boolean[xl][yl][xl * yl];
|
||||
if ((xl + yl) % 2 == 0 || grid[0][0] == ')' || grid[xl - 1][yl - 1] == '(') {
|
||||
return false;
|
||||
}
|
||||
dfs(grid, 0, 0, 0);
|
||||
return bl;
|
||||
}
|
||||
|
||||
int xl;
|
||||
int yl;
|
||||
boolean bl = false;
|
||||
boolean[][][] use;
|
||||
|
||||
private void dfs(char[][] grid, int x, int y, int cnt) {
|
||||
if (x >= xl || y >= yl || cnt > xl - x + yl - y - 1) {
|
||||
return;
|
||||
}
|
||||
if (x == xl - 1 && y == yl - 1) {
|
||||
bl = cnt == 1;
|
||||
}
|
||||
if (use[x][y][cnt]) {
|
||||
return;
|
||||
}
|
||||
use[x][y][cnt] = true;
|
||||
cnt += grid[x][y] == '(' ? 1 : -1;
|
||||
if (cnt < 0) {
|
||||
return;
|
||||
}
|
||||
if (!bl) {
|
||||
dfs(grid, x + 1, y, cnt);
|
||||
}
|
||||
if (!bl) {
|
||||
dfs(grid, x, y + 1, cnt);
|
||||
}
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
@ -0,0 +1,104 @@
|
||||
//<p>给你一棵二叉树的根节点 <code>root</code> ,找出并返回满足要求的节点数,要求节点的值等于其 <strong>子树</strong> 中值的 <strong>平均值</strong> 。</p>
|
||||
//
|
||||
//<p><strong>注意:</strong></p>
|
||||
//
|
||||
//<ul>
|
||||
// <li><code>n</code> 个元素的平均值可以由 <code>n</code> 个元素 <strong>求和</strong> 然后再除以 <code>n</code> ,并 <strong>向下舍入</strong> 到最近的整数。</li>
|
||||
// <li><code>root</code> 的 <strong>子树</strong> 由 <code>root</code> 和它的所有后代组成。</li>
|
||||
//</ul>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>示例 1:</strong></p>
|
||||
//<img src="https://assets.leetcode.com/uploads/2022/03/15/image-20220315203925-1.png" style="width: 300px; height: 212px;">
|
||||
//<pre><strong>输入:</strong>root = [4,8,5,0,1,null,6]
|
||||
//<strong>输出:</strong>5
|
||||
//<strong>解释:</strong>
|
||||
//对值为 4 的节点:子树的平均值 (4 + 8 + 5 + 0 + 1 + 6) / 6 = 24 / 6 = 4 。
|
||||
//对值为 5 的节点:子树的平均值 (5 + 6) / 2 = 11 / 2 = 5 。
|
||||
//对值为 0 的节点:子树的平均值 0 / 1 = 0 。
|
||||
//对值为 1 的节点:子树的平均值 1 / 1 = 1 。
|
||||
//对值为 6 的节点:子树的平均值 6 / 1 = 6 。
|
||||
//</pre>
|
||||
//
|
||||
//<p><strong>示例 2:</strong></p>
|
||||
//<img src="https://assets.leetcode.com/uploads/2022/03/26/image-20220326133920-1.png" style="width: 80px; height: 76px;">
|
||||
//<pre><strong>输入:</strong>root = [1]
|
||||
//<strong>输出:</strong>1
|
||||
//<strong>解释:</strong>对值为 1 的节点:子树的平均值 1 / 1 = 1。
|
||||
//</pre>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>提示:</strong></p>
|
||||
//
|
||||
//<ul>
|
||||
// <li>树中节点数目在范围 <code>[1, 1000]</code> 内</li>
|
||||
// <li><code>0 <= Node.val <= 1000</code></li>
|
||||
//</ul>
|
||||
//<div><li>👍 8</li><li>👎 0</li></div>
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import com.code.leet.entiy.TreeNode;
|
||||
|
||||
import java.util.LinkedList;
|
||||
import java.util.Queue;
|
||||
|
||||
// 2265:统计值等于子树平均值的节点数
|
||||
public class CountNodesEqualToAverageOfSubtree {
|
||||
public static void main(String[] args) {
|
||||
Solution solution = new CountNodesEqualToAverageOfSubtree().new Solution();
|
||||
// TO TEST
|
||||
}
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
|
||||
/**
|
||||
* Definition for a binary tree node.
|
||||
* public class TreeNode {
|
||||
* int val;
|
||||
* TreeNode left;
|
||||
* TreeNode right;
|
||||
* TreeNode() {}
|
||||
* TreeNode(int val) { this.val = val; }
|
||||
* TreeNode(int val, TreeNode left, TreeNode right) {
|
||||
* this.val = val;
|
||||
* this.left = left;
|
||||
* this.right = right;
|
||||
* }
|
||||
* }
|
||||
*/
|
||||
class Solution {
|
||||
public int averageOfSubtree(TreeNode root) {
|
||||
counts(root);
|
||||
sums(root);
|
||||
return count;
|
||||
}
|
||||
|
||||
Queue<Integer> queue = new LinkedList<>();
|
||||
int count = 0;
|
||||
|
||||
private int counts(TreeNode root) {
|
||||
if (root == null) {
|
||||
return 0;
|
||||
}
|
||||
int cnt = counts(root.left) + counts(root.right) + 1;
|
||||
queue.add(cnt);
|
||||
return cnt;
|
||||
}
|
||||
|
||||
private int sums(TreeNode root) {
|
||||
if (root == null) {
|
||||
return 0;
|
||||
}
|
||||
int sum = root.val;
|
||||
sum += sums(root.left);
|
||||
sum += sums(root.right);
|
||||
if (sum / queue.poll() == root.val) {
|
||||
count++;
|
||||
}
|
||||
return sum;
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
88
src/main/java/leetcode/editor/cn/CountNumberOfTexts.java
Normal file
88
src/main/java/leetcode/editor/cn/CountNumberOfTexts.java
Normal file
@ -0,0 +1,88 @@
|
||||
//<p>Alice 在给 Bob 用手机打字。数字到字母的 <strong>对应</strong> 如下图所示。</p>
|
||||
//
|
||||
//<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/15/1200px-telephone-keypad2svg.png" style="width: 200px; height: 162px;"></p>
|
||||
//
|
||||
//<p>为了 <strong>打出</strong> 一个字母,Alice 需要 <strong>按</strong> 对应字母 <code>i</code> 次,<code>i</code> 是该字母在这个按键上所处的位置。</p>
|
||||
//
|
||||
//<ul>
|
||||
// <li>比方说,为了按出字母 <code>'s'</code> ,Alice 需要按 <code>'7'</code> 四次。类似的, Alice 需要按 <code>'5'</code> 两次得到字母 <code>'k'</code> 。</li>
|
||||
// <li>注意,数字 <code>'0'</code> 和 <code>'1'</code> 不映射到任何字母,所以 Alice <strong>不</strong> 使用它们。</li>
|
||||
//</ul>
|
||||
//
|
||||
//<p>但是,由于传输的错误,Bob 没有收到 Alice 打字的字母信息,反而收到了 <strong>按键的字符串信息</strong> 。</p>
|
||||
//
|
||||
//<ul>
|
||||
// <li>比方说,Alice 发出的信息为 <code>"bob"</code> ,Bob 将收到字符串 <code>"2266622"</code> 。</li>
|
||||
//</ul>
|
||||
//
|
||||
//<p>给你一个字符串 <code>pressedKeys</code> ,表示 Bob 收到的字符串,请你返回 Alice <strong>总共可能发出多少种文字信息</strong> 。</p>
|
||||
//
|
||||
//<p>由于答案可能很大,将它对 <code>10<sup>9</sup> + 7</code> <strong>取余</strong> 后返回。</p>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>示例 1:</strong></p>
|
||||
//
|
||||
//<pre><b>输入:</b>pressedKeys = "22233"
|
||||
//<b>输出:</b>8
|
||||
//<strong>解释:</strong>
|
||||
//Alice 可能发出的文字信息包括:
|
||||
//"aaadd", "abdd", "badd", "cdd", "aaae", "abe", "bae" 和 "ce" 。
|
||||
//由于总共有 8 种可能的信息,所以我们返回 8 。
|
||||
//</pre>
|
||||
//
|
||||
//<p><strong>示例 2:</strong></p>
|
||||
//
|
||||
//<pre><b>输入:</b>pressedKeys = "222222222222222222222222222222222222"
|
||||
//<b>输出:</b>82876089
|
||||
//<strong>解释:</strong>
|
||||
//总共有 2082876103 种 Alice 可能发出的文字信息。
|
||||
//由于我们需要将答案对 10<sup>9</sup> + 7 取余,所以我们返回 2082876103 % (10<sup>9</sup> + 7) = 82876089 。
|
||||
//</pre>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>提示:</strong></p>
|
||||
//
|
||||
//<ul>
|
||||
// <li><code>1 <= pressedKeys.length <= 10<sup>5</sup></code></li>
|
||||
// <li><code>pressedKeys</code> 只包含数字 <code>'2'</code> 到 <code>'9'</code> 。</li>
|
||||
//</ul>
|
||||
//<div><li>👍 16</li><li>👎 0</li></div>
|
||||
package leetcode.editor.cn;
|
||||
|
||||
// 2266:统计打字方案数
|
||||
public class CountNumberOfTexts {
|
||||
public static void main(String[] args) {
|
||||
Solution solution = new CountNumberOfTexts().new Solution();
|
||||
// TO TEST
|
||||
}
|
||||
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public int countTexts(String pressedKeys) {
|
||||
int[] cnts = new int[pressedKeys.length() + 1];
|
||||
cnts[0] = 1;
|
||||
cnts[1] = 1;
|
||||
int mod = 1000000007;
|
||||
for (int i = 1; i < pressedKeys.length(); i++) {
|
||||
cnts[i + 1] = cnts[i];
|
||||
if (pressedKeys.charAt(i) == pressedKeys.charAt(i - 1)) {
|
||||
cnts[i + 1] += cnts[i - 1];
|
||||
cnts[i + 1] %= mod;
|
||||
if (i > 1 && pressedKeys.charAt(i) == pressedKeys.charAt(i - 2)) {
|
||||
cnts[i + 1] += cnts[i - 2];
|
||||
cnts[i + 1] %= mod;
|
||||
if (i > 2 && pressedKeys.charAt(i) == pressedKeys.charAt(i - 3) && (pressedKeys.charAt(i) == '7' || pressedKeys.charAt(i) == '9')) {
|
||||
cnts[i + 1] += cnts[i - 3];
|
||||
cnts[i + 1] %= mod;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return cnts[pressedKeys.length()];
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
@ -0,0 +1,77 @@
|
||||
//<p>给你一个字符串 <code>num</code> ,表示一个大整数。如果一个整数满足下述所有条件,则认为该整数是一个 <strong>优质整数</strong> :</p>
|
||||
//
|
||||
//<ul>
|
||||
// <li>该整数是 <code>num</code> 的一个长度为 <code>3</code> 的 <strong>子字符串</strong> 。</li>
|
||||
// <li>该整数由唯一一个数字重复 <code>3</code> 次组成。</li>
|
||||
//</ul>
|
||||
//
|
||||
//<p>以字符串形式返回 <strong>最大的优质整数</strong> 。如果不存在满足要求的整数,则返回一个空字符串 <code>""</code> 。</p>
|
||||
//
|
||||
//<p><strong>注意:</strong></p>
|
||||
//
|
||||
//<ul>
|
||||
// <li><strong>子字符串</strong> 是字符串中的一个连续字符序列。</li>
|
||||
// <li><code>num</code> 或优质整数中可能存在 <strong>前导零</strong> 。</li>
|
||||
//</ul>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>示例 1:</strong></p>
|
||||
//
|
||||
//<pre>
|
||||
//<strong>输入:</strong>num = "6<em><strong>777</strong></em>133339"
|
||||
//<strong>输出:</strong>"777"
|
||||
//<strong>解释:</strong>num 中存在两个优质整数:"777" 和 "333" 。
|
||||
//"777" 是最大的那个,所以返回 "777" 。
|
||||
//</pre>
|
||||
//
|
||||
//<p><strong>示例 2:</strong></p>
|
||||
//
|
||||
//<pre>
|
||||
//<strong>输入:</strong>num = "23<em><strong>000</strong></em>19"
|
||||
//<strong>输出:</strong>"000"
|
||||
//<strong>解释:</strong>"000" 是唯一一个优质整数。
|
||||
//</pre>
|
||||
//
|
||||
//<p><strong>示例 3:</strong></p>
|
||||
//
|
||||
//<pre>
|
||||
//<strong>输入:</strong>num = "42352338"
|
||||
//<strong>输出:</strong>""
|
||||
//<strong>解释:</strong>不存在长度为 3 且仅由一个唯一数字组成的整数。因此,不存在优质整数。
|
||||
//</pre>
|
||||
//
|
||||
//<p> </p>
|
||||
//
|
||||
//<p><strong>提示:</strong></p>
|
||||
//
|
||||
//<ul>
|
||||
// <li><code>3 <= num.length <= 1000</code></li>
|
||||
// <li><code>num</code> 仅由数字(<code>0</code> - <code>9</code>)组成</li>
|
||||
//</ul>
|
||||
//<div><li>👍 3</li><li>👎 0</li></div>
|
||||
package leetcode.editor.cn;
|
||||
|
||||
// 2264:字符串中最大的 3 位相同数字
|
||||
public class Largest3SameDigitNumberInString {
|
||||
public static void main(String[] args) {
|
||||
Solution solution = new Largest3SameDigitNumberInString().new Solution();
|
||||
// TO TEST
|
||||
}
|
||||
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public String largestGoodInteger(String num) {
|
||||
String str = "";
|
||||
for (int i = 9; i >= 0; i--) {
|
||||
str = "" + i + i + i;
|
||||
if (num.contains(str)) {
|
||||
return str;
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
@ -0,0 +1,55 @@
|
||||
<p>一个括号字符串是一个 <strong>非空</strong> 且只包含 <code>'('</code> 和 <code>')'</code> 的字符串。如果下面 <strong>任意</strong> 条件为 <strong>真</strong> ,那么这个括号字符串就是 <strong>合法的</strong> 。</p>
|
||||
|
||||
<ul>
|
||||
<li>字符串是 <code>()</code> 。</li>
|
||||
<li>字符串可以表示为 <code>AB</code>(<code>A</code> 连接 <code>B</code>),<code>A</code> 和 <code>B</code> 都是合法括号序列。</li>
|
||||
<li>字符串可以表示为 <code>(A)</code> ,其中 <code>A</code> 是合法括号序列。</li>
|
||||
</ul>
|
||||
|
||||
<p>给你一个 <code>m x n</code> 的括号网格图矩阵 <code>grid</code> 。网格图中一个 <strong>合法括号路径</strong> 是满足以下所有条件的一条路径:</p>
|
||||
|
||||
<ul>
|
||||
<li>路径开始于左上角格子 <code>(0, 0)</code> 。</li>
|
||||
<li>路径结束于右下角格子 <code>(m - 1, n - 1)</code> 。</li>
|
||||
<li>路径每次只会向 <strong>下</strong> 或者向 <strong>右</strong> 移动。</li>
|
||||
<li>路径经过的格子组成的括号字符串是<strong> 合法</strong> 的。</li>
|
||||
</ul>
|
||||
|
||||
<p>如果网格图中存在一条 <strong>合法括号路径</strong> ,请返回 <code>true</code> ,否则返回 <code>false</code> 。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/15/example1drawio.png" style="width: 521px; height: 300px;" /></p>
|
||||
|
||||
<pre>
|
||||
<b>输入:</b>grid = [["(","(","("],[")","(",")"],["(","(",")"],["(","(",")"]]
|
||||
<b>输出:</b>true
|
||||
<b>解释:</b>上图展示了两条路径,它们都是合法括号字符串路径。
|
||||
第一条路径得到的合法字符串是 "()(())" 。
|
||||
第二条路径得到的合法字符串是 "((()))" 。
|
||||
注意可能有其他的合法括号字符串路径。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/15/example2drawio.png" style="width: 165px; height: 165px;" /></p>
|
||||
|
||||
<pre>
|
||||
<b>输入:</b>grid = [[")",")"],["(","("]]
|
||||
<b>输出:</b>false
|
||||
<b>解释:</b>两条可行路径分别得到 "))(" 和 ")((" 。由于它们都不是合法括号字符串,我们返回 false 。
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>m == grid.length</code></li>
|
||||
<li><code>n == grid[i].length</code></li>
|
||||
<li><code>1 <= m, n <= 100</code></li>
|
||||
<li><code>grid[i][j]</code> 要么是 <code>'('</code> ,要么是 <code>')'</code> 。</li>
|
||||
</ul>
|
||||
<div><li>👍 15</li><li>👎 0</li></div>
|
@ -0,0 +1,39 @@
|
||||
<p>给你一棵二叉树的根节点 <code>root</code> ,找出并返回满足要求的节点数,要求节点的值等于其 <strong>子树</strong> 中值的 <strong>平均值</strong> 。</p>
|
||||
|
||||
<p><strong>注意:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>n</code> 个元素的平均值可以由 <code>n</code> 个元素 <strong>求和</strong> 然后再除以 <code>n</code> ,并 <strong>向下舍入</strong> 到最近的整数。</li>
|
||||
<li><code>root</code> 的 <strong>子树</strong> 由 <code>root</code> 和它的所有后代组成。</li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
<img src="https://assets.leetcode.com/uploads/2022/03/15/image-20220315203925-1.png" style="width: 300px; height: 212px;">
|
||||
<pre><strong>输入:</strong>root = [4,8,5,0,1,null,6]
|
||||
<strong>输出:</strong>5
|
||||
<strong>解释:</strong>
|
||||
对值为 4 的节点:子树的平均值 (4 + 8 + 5 + 0 + 1 + 6) / 6 = 24 / 6 = 4 。
|
||||
对值为 5 的节点:子树的平均值 (5 + 6) / 2 = 11 / 2 = 5 。
|
||||
对值为 0 的节点:子树的平均值 0 / 1 = 0 。
|
||||
对值为 1 的节点:子树的平均值 1 / 1 = 1 。
|
||||
对值为 6 的节点:子树的平均值 6 / 1 = 6 。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
<img src="https://assets.leetcode.com/uploads/2022/03/26/image-20220326133920-1.png" style="width: 80px; height: 76px;">
|
||||
<pre><strong>输入:</strong>root = [1]
|
||||
<strong>输出:</strong>1
|
||||
<strong>解释:</strong>对值为 1 的节点:子树的平均值 1 / 1 = 1。
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>树中节点数目在范围 <code>[1, 1000]</code> 内</li>
|
||||
<li><code>0 <= Node.val <= 1000</code></li>
|
||||
</ul>
|
||||
<div><li>👍 8</li><li>👎 0</li></div>
|
@ -0,0 +1,51 @@
|
||||
<p>Alice 在给 Bob 用手机打字。数字到字母的 <strong>对应</strong> 如下图所示。</p>
|
||||
|
||||
<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/15/1200px-telephone-keypad2svg.png" style="width: 200px; height: 162px;"></p>
|
||||
|
||||
<p>为了 <strong>打出</strong> 一个字母,Alice 需要 <strong>按</strong> 对应字母 <code>i</code> 次,<code>i</code> 是该字母在这个按键上所处的位置。</p>
|
||||
|
||||
<ul>
|
||||
<li>比方说,为了按出字母 <code>'s'</code> ,Alice 需要按 <code>'7'</code> 四次。类似的, Alice 需要按 <code>'5'</code> 两次得到字母 <code>'k'</code> 。</li>
|
||||
<li>注意,数字 <code>'0'</code> 和 <code>'1'</code> 不映射到任何字母,所以 Alice <strong>不</strong> 使用它们。</li>
|
||||
</ul>
|
||||
|
||||
<p>但是,由于传输的错误,Bob 没有收到 Alice 打字的字母信息,反而收到了 <strong>按键的字符串信息</strong> 。</p>
|
||||
|
||||
<ul>
|
||||
<li>比方说,Alice 发出的信息为 <code>"bob"</code> ,Bob 将收到字符串 <code>"2266622"</code> 。</li>
|
||||
</ul>
|
||||
|
||||
<p>给你一个字符串 <code>pressedKeys</code> ,表示 Bob 收到的字符串,请你返回 Alice <strong>总共可能发出多少种文字信息</strong> 。</p>
|
||||
|
||||
<p>由于答案可能很大,将它对 <code>10<sup>9</sup> + 7</code> <strong>取余</strong> 后返回。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre><b>输入:</b>pressedKeys = "22233"
|
||||
<b>输出:</b>8
|
||||
<strong>解释:</strong>
|
||||
Alice 可能发出的文字信息包括:
|
||||
"aaadd", "abdd", "badd", "cdd", "aaae", "abe", "bae" 和 "ce" 。
|
||||
由于总共有 8 种可能的信息,所以我们返回 8 。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre><b>输入:</b>pressedKeys = "222222222222222222222222222222222222"
|
||||
<b>输出:</b>82876089
|
||||
<strong>解释:</strong>
|
||||
总共有 2082876103 种 Alice 可能发出的文字信息。
|
||||
由于我们需要将答案对 10<sup>9</sup> + 7 取余,所以我们返回 2082876103 % (10<sup>9</sup> + 7) = 82876089 。
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= pressedKeys.length <= 10<sup>5</sup></code></li>
|
||||
<li><code>pressedKeys</code> 只包含数字 <code>'2'</code> 到 <code>'9'</code> 。</li>
|
||||
</ul>
|
||||
<div><li>👍 16</li><li>👎 0</li></div>
|
@ -0,0 +1,52 @@
|
||||
<p>给你一个字符串 <code>num</code> ,表示一个大整数。如果一个整数满足下述所有条件,则认为该整数是一个 <strong>优质整数</strong> :</p>
|
||||
|
||||
<ul>
|
||||
<li>该整数是 <code>num</code> 的一个长度为 <code>3</code> 的 <strong>子字符串</strong> 。</li>
|
||||
<li>该整数由唯一一个数字重复 <code>3</code> 次组成。</li>
|
||||
</ul>
|
||||
|
||||
<p>以字符串形式返回 <strong>最大的优质整数</strong> 。如果不存在满足要求的整数,则返回一个空字符串 <code>""</code> 。</p>
|
||||
|
||||
<p><strong>注意:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><strong>子字符串</strong> 是字符串中的一个连续字符序列。</li>
|
||||
<li><code>num</code> 或优质整数中可能存在 <strong>前导零</strong> 。</li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>num = "6<em><strong>777</strong></em>133339"
|
||||
<strong>输出:</strong>"777"
|
||||
<strong>解释:</strong>num 中存在两个优质整数:"777" 和 "333" 。
|
||||
"777" 是最大的那个,所以返回 "777" 。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>num = "23<em><strong>000</strong></em>19"
|
||||
<strong>输出:</strong>"000"
|
||||
<strong>解释:</strong>"000" 是唯一一个优质整数。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>num = "42352338"
|
||||
<strong>输出:</strong>""
|
||||
<strong>解释:</strong>不存在长度为 3 且仅由一个唯一数字组成的整数。因此,不存在优质整数。
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>3 <= num.length <= 1000</code></li>
|
||||
<li><code>num</code> 仅由数字(<code>0</code> - <code>9</code>)组成</li>
|
||||
</ul>
|
||||
<div><li>👍 3</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user