当前位置:网站首页>June brush question 01 - array
June brush question 01 - array
2022-07-06 09:38:00 【A Guang chasing dreams】
Brush questions in June 01—— Array
Today's brush topic content : Array
Preface
- Update the problem solution content of the problem brush every day
- Focus on personal understanding , Look at the difficulty and update the number of questions
- The title comes from Li Kou
- Try to work out at least one question every day
- Language java、python、c\c++
One 、 Today's topic
- 1588. The sum of all odd length subarrays
- 1848. Minimum distance to target element
- 1652. Dismantle the bomb
- 1640. Can you join to form an array
Two 、 Their thinking
1. 1588. The sum of all odd length subarrays
- Require the sum of all odd subsequences
- That is, start traversing from each element , Add the current element sum to the result when it is an odd number of elements
- Return the result
class Solution {
public int sumOddLengthSubarrays(int[] arr) {
int i = 0, j, count = 0, ans = 0;
int n = arr.length;
while( i < n){
j = i;
count = 0;
while(j < n){
count += arr[j];
if ((j - i + 1) % 2 == 1){
ans += count;
}
j++;
}
i++;
}
return ans;
}
}
2. 1848. Minimum distance to target element
- Find the subscript of the element , Maintain a minimum value
class Solution {
public int getMinDistance(int[] nums, int target, int start) {
int i;
int n = nums.length;
int ret = 10010;
for (i = 0; i < n; ++i){
if (nums[i] == target){
ret = Math.min(ret, Math.abs(i - start));
}
}
return ret;
}
}
3. 1652. Dismantle the bomb
- according to
kThere are three cases for the value of , For the sake of understanding , Directly mark the three situations- If
kby 0 Back to full 0 that will do- If
kGreater than or less than 0, There are two scenarios , The expansion here is larger than 0 Of
- If
i+kGreater than the rightmost subscript of the array , It will return to the first... From the beginning of the arrayi + k - nA place- If it is less than the rightmost subscript of the array , Then add it directly
- Less than 0 It's the same thing
class Solution {
public int[] decrypt(int[] code, int k) {
int i, n = code.length;
int t = k;
int[] ret = new int[n];
if (k == 0){
return ret;
}else if (k < 0){
for (i = 0; i < n; ++i){
int temp = 0;
while(k < 0){
if (i + k < 0){
temp += code[n + i + k];
}else{
temp += code[i + k];
}
k++;
}
k = t;
ret[i] = temp;
}
}else{
for (i = 0; i < n; ++i){
int temp = 0;
while(k > 0){
if (i + k > n - 1){
temp += code[i + k - n];
}else{
temp += code[i + k];
}
k--;
}
k = t;
ret[i] = temp;
}
}
return ret;
}
}
4. 1640. Can you join to form an array
There are two ways of thinking about this question
Train of thought
The first is to use hash table
1, Convert all subsets of the two-dimensional array into strings as
keyIn the hash table , Defaultvaluebyfalse
2. Traversing a one-dimensional array , If the current number exists in the... Of the hash tablekeyin , WillvalueSet astrue
3. Splice the current numbers in order , Judge whether there is inkeyin , If it exists, repeat step 2
class Solution {
public boolean canFormArray(int[] arr, int[][] pieces) {
// Define a hash table
HashMap<String, Boolean> map = new HashMap<>();
int i = 0, j, n = arr.length;
// Convert all subsets in the two-dimensional array into strings and store them in the hash table
for(int[] item: pieces){
String s = Integer.toString(item[0]);
for(int k = 1; k < item.length; k++){
s += Integer.toString(item[k]);
}
map.put(s, false); // By default value Set as false
}
while(i < n){
String s = Integer.toString(arr[i]);
// If it is a single subset ( There's only one number )
if (map.containsKey(s)){
map.put(s, true);
}else{
// Is a subset of multiple numbers
for(j = i+1; j < n; j++){
s += Integer.toString(arr[j]);
if (map.containsKey(s)){
map.put(s, true);
i = j;
break;
}
}
}
i++;
}
// Traverse to see if there is still false Value
for (Boolean b: map.values()){
if (!b) return false;
}
return true;
}
}
Train of thought two :
- Traversing a one-dimensional array , Use one flag Identify the return result
- Find an equal number from the second array , It must be arranged in order
- according to flag Judge the result
class Solution {
public boolean canFormArray(int[] arr, int[][] pieces) {
int i = 0, j, k;
boolean flag;
while (i < arr.length){
flag = false;
for(j = 0; j < pieces.length; j++){
// If the first is not equal to arr[i] Then skip
if (pieces[j][0] != arr[i]){
continue;
}
// First equals arr[i] when , Judge pieces[j] Whether the subset of and arr The next number corresponds to
for(k = 0; k < pieces[j].length; k++){
if (pieces[j][k] == arr[i]){
i++;
flag = true;
}else{
return false;
}
}
// If at this time i The traversal is complete
if (i == arr.length){
return true;
}
}
if(!flag){
return false;
}
}
return true;
}
}
边栏推荐
- Chapter 1 :Application of Artificial intelligence in Drug Design:Opportunity and Challenges
- Global and Chinese market of capacitive displacement sensors 2022-2028: Research Report on technology, participants, trends, market size and share
- Nacos installation and service registration
- 工作流—activiti7环境搭建
- 有软件负载均衡,也有硬件负载均衡,选择哪个?
- CAP理论
- 018. Valid palindromes
- What are the models of data modeling
- Global and Chinese market of AVR series microcontrollers 2022-2028: Research Report on technology, participants, trends, market size and share
- Kratos战神微服务框架(三)
猜你喜欢

Withdrawal of wechat applet (enterprise payment to change)

英雄联盟轮播图手动轮播

【深度學習】語義分割-源代碼匯總
![[three storage methods of graph] just use adjacency matrix to go out](/img/79/337ee452d12ad477e6b7cb6b359027.png)
[three storage methods of graph] just use adjacency matrix to go out
![[deep learning] semantic segmentation: paper reading: (CVPR 2022) mpvit (cnn+transformer): multipath visual transformer for dense prediction](/img/f1/6f22f00843072fa4ad83dc0ef2fad8.png)
[deep learning] semantic segmentation: paper reading: (CVPR 2022) mpvit (cnn+transformer): multipath visual transformer for dense prediction

What are the models of data modeling

Solve the problem of too many small files

Redis' performance indicators and monitoring methods

基于WEB的网上购物系统的设计与实现(附:源码 论文 sql文件)

Hard core! One configuration center for 8 classes!
随机推荐
Kratos战神微服务框架(一)
The order of include header files and the difference between double quotation marks "and angle brackets < >
Mapreduce实例(八):Map端join
[Yu Yue education] reference materials of power electronics technology of Jiangxi University of science and technology
工作流—activiti7环境搭建
[shell script] - archive file script
Nacos installation and service registration
Global and Chinese market of AVR series microcontrollers 2022-2028: Research Report on technology, participants, trends, market size and share
Redis之发布订阅
Solve the problem of too many small files
Hard core! One configuration center for 8 classes!
Redis geospatial
Redis connection redis service command
Research and implementation of hospital management inpatient system based on b/s (attached: source code paper SQL file)
Withdrawal of wechat applet (enterprise payment to change)
Mathematical modeling 2004b question (transmission problem)
Mapreduce实例(六):倒排索引
Servlet learning diary 8 - servlet life cycle and thread safety
Global and Chinese markets for modular storage area network (SAN) solutions 2022-2028: Research Report on technology, participants, trends, market size and share
Sentinel mode of redis