Skip to content

Commit 469d03e

Browse files
committed
Add 1413 solution
1 parent 194299b commit 469d03e

11 files changed

+593
-22
lines changed

src/problem/p1146_snapshot_array.rs

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/**
2+
* [1146] Snapshot Array
3+
*
4+
* Implement a SnapshotArray that supports the following interface:
5+
*
6+
* SnapshotArray(int length) initializes an array-like data structure with the given length. Initially, each element equals 0.
7+
* void set(index, val) sets the element at the given index to be equal to val.
8+
* int snap() takes a snapshot of the array and returns the snap_id: the total number of times we called snap() minus 1.
9+
* int get(index, snap_id) returns the value at the given index, at the time we took the snapshot with the given snap_id
10+
*
11+
*
12+
* Example 1:
13+
*
14+
* Input: ["SnapshotArray","set","snap","set","get"]
15+
* [[3],[0,5],[],[0,6],[0,0]]
16+
* Output: [null,null,0,null,5]
17+
* Explanation:
18+
* SnapshotArray snapshotArr = new SnapshotArray(3); // set the length to be 3
19+
* snapshotArr.set(0,5); // Set array[0] = 5
20+
* snapshotArr.snap(); // Take a snapshot, return snap_id = 0
21+
* snapshotArr.set(0,6);
22+
* snapshotArr.get(0,0); // Get the value of array[0] with snap_id = 0, return 5
23+
*
24+
* Constraints:
25+
*
26+
* 1 <= length <= 5 * 10^4
27+
* 0 <= index < length
28+
* 0 <= val <= 10^9
29+
* 0 <= snap_id < (the total number of times we call snap())
30+
* At most 5 * 10^4 calls will be made to set, snap, and get.
31+
*
32+
*/
33+
pub struct Solution {}
34+
35+
// problem: https://leetcode.com/problems/snapshot-array/
36+
// discuss: https://leetcode.com/problems/snapshot-array/discuss/?currentPage=1&orderBy=most_votes&query=
37+
38+
// submission codes start here
39+
40+
struct SnapshotArray {
41+
false
42+
}
43+
44+
45+
/**
46+
* `&self` means the method takes an immutable reference.
47+
* If you need a mutable reference, change it to `&mut self` instead.
48+
*/
49+
impl SnapshotArray {
50+
51+
fn new(length: i32) -> Self {
52+
53+
}
54+
55+
fn set(&self, index: i32, val: i32) {
56+
57+
}
58+
59+
fn snap(&self) -> i32 {
60+
61+
}
62+
63+
fn get(&self, index: i32, snap_id: i32) -> i32 {
64+
65+
}
66+
}
67+
68+
/**
69+
* Your SnapshotArray object will be instantiated and called as such:
70+
* let obj = SnapshotArray::new(length);
71+
* obj.set(index, val);
72+
* let ret_2: i32 = obj.snap();
73+
* let ret_3: i32 = obj.get(index, snap_id);
74+
*/
75+
76+
// submission codes end
77+
78+
#[cfg(test)]
79+
mod tests {
80+
use super::*;
81+
82+
#[test]
83+
fn test_1146() {
84+
}
85+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/**
2+
* [1624] Largest Substring Between Two Equal Characters
3+
*
4+
* Given a string s, return the length of the longest substring between two equal characters, excluding the two characters. If there is no such substring return -1.
5+
* A substring is a contiguous sequence of characters within a string.
6+
*
7+
* Example 1:
8+
*
9+
* Input: s = "aa"
10+
* Output: 0
11+
* Explanation: The optimal substring here is an empty substring between the two 'a's.
12+
* Example 2:
13+
*
14+
* Input: s = "abca"
15+
* Output: 2
16+
* Explanation: The optimal substring here is "bc".
17+
*
18+
* Example 3:
19+
*
20+
* Input: s = "cbzxy"
21+
* Output: -1
22+
* Explanation: There are no characters that appear twice in s.
23+
*
24+
*
25+
* Constraints:
26+
*
27+
* 1 <= s.length <= 300
28+
* s contains only lowercase English letters.
29+
*
30+
*/
31+
pub struct Solution {}
32+
33+
// problem: https://leetcode.com/problems/largest-substring-between-two-equal-characters/
34+
// discuss: https://leetcode.com/problems/largest-substring-between-two-equal-characters/discuss/?currentPage=1&orderBy=most_votes&query=
35+
36+
// submission codes start here
37+
38+
impl Solution {
39+
pub fn max_length_between_equal_characters(s: String) -> i32 {
40+
0
41+
}
42+
}
43+
44+
// submission codes end
45+
46+
#[cfg(test)]
47+
mod tests {
48+
use super::*;
49+
50+
#[test]
51+
fn test_1624() {
52+
}
53+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
/**
2+
* [1681] Minimum Incompatibility
3+
*
4+
* You are given an integer array nums​​​ and an integer k. You are asked to distribute this array into k subsets of equal size such that there are no two equal elements in the same subset.
5+
* A subset's incompatibility is the difference between the maximum and minimum elements in that array.
6+
* Return the minimum possible sum of incompatibilities of the k subsets after distributing the array optimally, or return -1 if it is not possible.
7+
* A subset is a group integers that appear in the array with no particular order.
8+
*
9+
* Example 1:
10+
*
11+
* Input: nums = [1,2,1,4], k = 2
12+
* Output: 4
13+
* Explanation: The optimal distribution of subsets is [1,2] and [1,4].
14+
* The incompatibility is (2-1) + (4-1) = 4.
15+
* Note that [1,1] and [2,4] would result in a smaller sum, but the first subset contains 2 equal elements.
16+
* Example 2:
17+
*
18+
* Input: nums = [6,3,8,1,3,1,2,2], k = 4
19+
* Output: 6
20+
* Explanation: The optimal distribution of subsets is [1,2], [2,3], [6,8], and [1,3].
21+
* The incompatibility is (2-1) + (3-2) + (8-6) + (3-1) = 6.
22+
*
23+
* Example 3:
24+
*
25+
* Input: nums = [5,3,3,6,3,3], k = 3
26+
* Output: -1
27+
* Explanation: It is impossible to distribute nums into 3 subsets where no two elements are equal in the same subset.
28+
*
29+
*
30+
* Constraints:
31+
*
32+
* 1 <= k <= nums.length <= 16
33+
* nums.length is divisible by k
34+
* 1 <= nums[i] <= nums.length
35+
*
36+
*/
37+
pub struct Solution {}
38+
39+
// problem: https://leetcode.com/problems/minimum-incompatibility/
40+
// discuss: https://leetcode.com/problems/minimum-incompatibility/discuss/?currentPage=1&orderBy=most_votes&query=
41+
42+
// submission codes start here
43+
44+
impl Solution {
45+
pub fn minimum_incompatibility(nums: Vec<i32>, k: i32) -> i32 {
46+
0
47+
}
48+
}
49+
50+
// submission codes end
51+
52+
#[cfg(test)]
53+
mod tests {
54+
use super::*;
55+
56+
#[test]
57+
fn test_1681() {
58+
}
59+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/**
2+
* [1930] Unique Length-3 Palindromic Subsequences
3+
*
4+
* Given a string s, return the number of unique palindromes of length three that are a subsequence of s.
5+
* Note that even if there are multiple ways to obtain the same subsequence, it is still only counted once.
6+
* A palindrome is a string that reads the same forwards and backwards.
7+
* A subsequence of a string is a new string generated from the original string with some characters (can be none) deleted without changing the relative order of the remaining characters.
8+
*
9+
* For example, "ace" is a subsequence of "<u>a</u>b<u>c</u>d<u>e</u>".
10+
*
11+
*
12+
* Example 1:
13+
*
14+
* Input: s = "aabca"
15+
* Output: 3
16+
* Explanation: The 3 palindromic subsequences of length 3 are:
17+
* - "aba" (subsequence of "<u>a</u>a<u>b</u>c<u>a</u>")
18+
* - "aaa" (subsequence of "<u>aa</u>bc<u>a</u>")
19+
* - "aca" (subsequence of "<u>a</u>ab<u>ca</u>")
20+
*
21+
* Example 2:
22+
*
23+
* Input: s = "adc"
24+
* Output: 0
25+
* Explanation: There are no palindromic subsequences of length 3 in "adc".
26+
*
27+
* Example 3:
28+
*
29+
* Input: s = "bbcbaba"
30+
* Output: 4
31+
* Explanation: The 4 palindromic subsequences of length 3 are:
32+
* - "bbb" (subsequence of "<u>bb</u>c<u>b</u>aba")
33+
* - "bcb" (subsequence of "<u>b</u>b<u>cb</u>aba")
34+
* - "bab" (subsequence of "<u>b</u>bcb<u>ab</u>a")
35+
* - "aba" (subsequence of "bbcb<u>aba</u>")
36+
*
37+
*
38+
* Constraints:
39+
*
40+
* 3 <= s.length <= 10^5
41+
* s consists of only lowercase English letters.
42+
*
43+
*/
44+
pub struct Solution {}
45+
46+
// problem: https://leetcode.com/problems/unique-length-3-palindromic-subsequences/
47+
// discuss: https://leetcode.com/problems/unique-length-3-palindromic-subsequences/discuss/?currentPage=1&orderBy=most_votes&query=
48+
49+
// submission codes start here
50+
51+
impl Solution {
52+
pub fn count_palindromic_subsequence(s: String) -> i32 {
53+
0
54+
}
55+
}
56+
57+
// submission codes end
58+
59+
#[cfg(test)]
60+
mod tests {
61+
use super::*;
62+
63+
#[test]
64+
fn test_1930() {
65+
}
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/**
2+
* [2042] Check if Numbers Are Ascending in a Sentence
3+
*
4+
* A sentence is a list of tokens separated by a single space with no leading or trailing spaces. Every token is either a positive number consisting of digits 0-9 with no leading zeros, or a word consisting of lowercase English letters.
5+
*
6+
* For example, "a puppy has 2 eyes 4 legs" is a sentence with seven tokens: "2" and "4" are numbers and the other tokens such as "puppy" are words.
7+
*
8+
* Given a string s representing a sentence, you need to check if all the numbers in s are strictly increasing from left to right (i.e., other than the last number, each number is strictly smaller than the number on its right in s).
9+
* Return true if so, or false otherwise.
10+
*
11+
* Example 1:
12+
* <img alt="example-1" src="https://assets.leetcode.com/uploads/2021/09/30/example1.png" style="width: 637px; height: 48px;" />
13+
* Input: s = "1 box has 3 blue 4 red 6 green and 12 yellow marbles"
14+
* Output: true
15+
* Explanation: The numbers in s are: 1, 3, 4, 6, 12.
16+
* They are strictly increasing from left to right: 1 < 3 < 4 < 6 < 12.
17+
*
18+
* Example 2:
19+
*
20+
* Input: s = "hello world 5 x 5"
21+
* Output: false
22+
* Explanation: The numbers in s are: <u>5</u>, <u>5</u>. They are not strictly increasing.
23+
*
24+
* Example 3:
25+
* <img alt="example-3" src="https://assets.leetcode.com/uploads/2021/09/30/example3.png" style="width: 794px; height: 48px;" />
26+
* Input: s = "sunset is at 7 51 pm overnight lows will be in the low 50 and 60 s"
27+
* Output: false
28+
* Explanation: The numbers in s are: 7, <u>51</u>, <u>50</u>, 60. They are not strictly increasing.
29+
*
30+
*
31+
* Constraints:
32+
*
33+
* 3 <= s.length <= 200
34+
* s consists of lowercase English letters, spaces, and digits from 0 to 9, inclusive.
35+
* The number of tokens in s is between 2 and 100, inclusive.
36+
* The tokens in s are separated by a single space.
37+
* There are at least two numbers in s.
38+
* Each number in s is a positive number less than 100, with no leading zeros.
39+
* s contains no leading or trailing spaces.
40+
*
41+
*/
42+
pub struct Solution {}
43+
44+
// problem: https://leetcode.com/problems/check-if-numbers-are-ascending-in-a-sentence/
45+
// discuss: https://leetcode.com/problems/check-if-numbers-are-ascending-in-a-sentence/discuss/?currentPage=1&orderBy=most_votes&query=
46+
47+
// submission codes start here
48+
49+
impl Solution {
50+
pub fn are_numbers_ascending(s: String) -> bool {
51+
false
52+
}
53+
}
54+
55+
// submission codes end
56+
57+
#[cfg(test)]
58+
mod tests {
59+
use super::*;
60+
61+
#[test]
62+
fn test_2042() {
63+
}
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/**
2+
* [2206] Divide Array Into Equal Pairs
3+
*
4+
* You are given an integer array nums consisting of 2 * n integers.
5+
* You need to divide nums into n pairs such that:
6+
*
7+
* Each element belongs to exactly one pair.
8+
* The elements present in a pair are equal.
9+
*
10+
* Return true if nums can be divided into n pairs, otherwise return false.
11+
*
12+
* Example 1:
13+
*
14+
* Input: nums = [3,2,3,2,2,2]
15+
* Output: true
16+
* Explanation:
17+
* There are 6 elements in nums, so they should be divided into 6 / 2 = 3 pairs.
18+
* If nums is divided into the pairs (2, 2), (3, 3), and (2, 2), it will satisfy all the conditions.
19+
*
20+
* Example 2:
21+
*
22+
* Input: nums = [1,2,3,4]
23+
* Output: false
24+
* Explanation:
25+
* There is no way to divide nums into 4 / 2 = 2 pairs such that the pairs satisfy every condition.
26+
*
27+
*
28+
* Constraints:
29+
*
30+
* nums.length == 2 * n
31+
* 1 <= n <= 500
32+
* 1 <= nums[i] <= 500
33+
*
34+
*/
35+
pub struct Solution {}
36+
37+
// problem: https://leetcode.com/problems/divide-array-into-equal-pairs/
38+
// discuss: https://leetcode.com/problems/divide-array-into-equal-pairs/discuss/?currentPage=1&orderBy=most_votes&query=
39+
40+
// submission codes start here
41+
42+
impl Solution {
43+
pub fn divide_array(nums: Vec<i32>) -> bool {
44+
false
45+
}
46+
}
47+
48+
// submission codes end
49+
50+
#[cfg(test)]
51+
mod tests {
52+
use super::*;
53+
54+
#[test]
55+
fn test_2206() {
56+
}
57+
}

0 commit comments

Comments
 (0)