当前位置:网站首页>LeetCode 1566. Repeat the pattern with length m at least k times
LeetCode 1566. Repeat the pattern with length m at least k times
2022-07-06 16:43:00 【Daylight629】
1566. Repeat at least K And the length is M The pattern of
Here's an array of positive integers arr
, Please find a length of m
And repeat at least... In the array k
Second mode .
Pattern Is a subarray of one or more values ( Continuous subsequences ), continuity Repeat many times, but No overlap . The pattern is defined by its length and number of repetitions .
If there are at least duplicates in the array k
And the length is m
The pattern of , Then return to true
, Otherwise return to false
.
Example 1:
Input :arr = [1,2,4,4,4,4], m = 1, k = 3
Output :true
explain : Pattern (4) The length of is 1 , And repeat continuously 4 Time . Be careful , Patterns can be repeated k Times or more , But not less than k Time .
Example 2:
Input :arr = [1,2,1,2,1,1,1,3], m = 2, k = 2
Output :true
explain : Pattern (1,2) The length is 2 , And repeat continuously 2 Time . Another pattern that fits the meaning of the question is (2,1) , Same repetition 2 Time .
Example 3:
Input :arr = [1,2,1,2,1,3], m = 2, k = 3
Output :false
explain : Pattern (1,2) The length is 2 , But only repeat continuously 2 Time . There is no length of 2 And at least repeat 3 Second mode .
Example 4:
Input :arr = [1,2,3,1,2], m = 2, k = 2
Output :false
explain : Pattern (1,2) appear 2 Times but not continuously , So it can't be counted as continuous repetition 2 Time .
Example 5:
Input :arr = [2,2,2,2], m = 2, k = 3
Output :false
explain : The length is 2 The only mode is (2,2) , But only repeat continuously 2 Time . Be careful , The number of overlapped repetitions cannot be calculated .
Tips :
2 <= arr.length <= 100
1 <= arr[i] <= 100
1 <= m <= 100
2 <= k <= 100
Two 、 Method 1
enumeration
class Solution {
public boolean containsPattern(int[] arr, int m, int k) {
int n = arr.length;
for (int l = 0; l <= n - m * k; ++l) {
int offset;
for (offset = 0; offset < m * k; ++offset) {
if (arr[l + offset] != arr[l + offset % m]) {
break;
}
}
if (offset == m * k) {
return true;
}
}
return false;
}
}
Complexity analysis
- Time complexity :O(n×m×k). Outermost cycle l The number of values is n−m×k, Inner circulation offset The number of values is m×k, Therefore, the asymptotic time complexity is O((n−m×k)×m×k)=O(n×m×k).
- Spatial complexity :O(1).
边栏推荐
- How to insert mathematical formulas in CSDN blog
- 300th weekly match - leetcode
- Tencent interview algorithm question
- QT style settings of qcobobox controls (rounded corners, drop-down boxes, up expansion, editable, internal layout, etc.)
- Market trend report, technical innovation and market forecast of tabletop dishwashers in China
- 第6章 DataNode
- 腾讯面试算法题
- Story of [Kun Jintong]: talk about Chinese character coding and common character sets
- Research Report of desktop clinical chemical analyzer industry - market status analysis and development prospect prediction
- Double specific tyrosine phosphorylation regulated kinase 1A Industry Research Report - market status analysis and development prospect prediction
猜你喜欢
MariaDB的安装与配置
两个礼拜速成软考中级软件设计师经验
sublime text 代码格式化操作
Installation and use of VMware Tools and open VM tools: solve the problems of incomplete screen and unable to transfer files of virtual machines
CMake速成
Log statistics (double pointer)
Two weeks' experience of intermediate software designer in the crash soft exam
Chapter 6 rebalance details
ffmpeg命令行使用
Solve the problem of intel12 generation core CPU [small core full, large core onlookers] (win11)
随机推荐
China double brightening film (dbef) market trend report, technical dynamic innovation and market forecast
Chapter 5 yarn resource scheduler
腾讯面试算法题
Kubernetes cluster deployment
Summary of game theory
QT simulates mouse events and realizes clicking, double clicking, moving and dragging
第2章 HFDS的Shell操作
Simple records of business system migration from Oracle to opengauss database
Click QT button to switch qlineedit focus (including code)
ffmpeg命令行使用
300th weekly match - leetcode
LeetCode 1550. There are three consecutive arrays of odd numbers
新手必会的静态站点生成器——Gridsome
QT implementation window gradually disappears qpropertyanimation+ progress bar
MariaDB的安装与配置
How to insert mathematical formulas in CSDN blog
力扣leetcode第 280 场周赛
875. Leetcode, a banana lover
Story of [Kun Jintong]: talk about Chinese character coding and common character sets
Research Report of desktop clinical chemical analyzer industry - market status analysis and development prospect prediction