岁月留痕(连续子数组)

2024-05-06 11:36
文章标签 数组 连续 岁月 留痕

本文主要是介绍岁月留痕(连续子数组),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

【问题描述】

给定 n (1 ≤ n ≤ 24)个正整数a(1)、a(2)、...、a(n),请判断这 n 个数是否是连续 n 个月份的天数,这些月份可以跨年度。

【输入形式】

输入第一行为一个整数 n,第二行为n个正整数 a(1)、a(2)、...、a(n)()(28 ≤ ai ≤ 31)。

【输出形式】

输出Yes或No。

【样例输入1】

4

31 31 30 31

【样例输出1】

Yes

【样例输入2】

2

30 30

【样例输出2】

No

【样例输入3】

5

29 31 30 31 30

【样例输出3】

Yes

【样例说明】

在第一个样例中,连续4个数是7、8、9、10月份的天数

在第二个样例中,没有哪两个连续月份的天数都为30

在第三个样例中,是某闰年的2、3、4、5、6月份的天数

解题思路

核心思路:通过模拟连续两年的月份天数(包括平年和闰年),然后检查输入的月份天数数组是否能够在这个模拟的序列中找到一个连续的匹配段。

  1. 从命令行键入月份数n,n个月的天数用mothsDays数组保存,并进行初始化;

  2. 初始化包括闰年、平年所有情况的月天数、能匹配的最大月份数量maxCount

  3. 循环遍历,只有平平、平润、润平三种情况,只需要遍历两年 i<24

    1. 初始化count用于记录每次比较的最大月份数

    2. 用临时变量k记录当前yearDays的下标

    3. if判断yearDays[k] == monthsDay[j]是否相等

      1. 相等:count++;k++;

      2. 否:break这次循环

    4. 然后判断count > maxCoun,如果是更新maxCount = count

  4. if判断比较maxCount == n

    1. 是:输出Yes

    2. 不是:输出No

Java代码

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int n = scanner.nextInt();int[] monthsDay = new int[n];for (int i = 0; i < n; i++) {monthsDay[i] = scanner.nextInt();}//初始化年份天数数组(包括平年和闰年的月份天数)int[] yearDays = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};int maxCount = 0; //记录最大连续月份数for (int i = 0; i < 24; i++) { // 最多连续两年,则有平闰、平平、闰平三种情况int count = 0; // 每次测试从0开始记录连续相等的次数int k = i;for (int j = 0; j < n; j++) {if(yearDays[k] == monthsDay[j]){count++;k++; // 使两个数组同时递增}else{break;}}if(count > maxCount)  maxCount = count; // 更新最大连续相等次数}if(maxCount == n){System.out.println("Yes");}else{System.out.println("No");}scanner.close();}
}

这篇关于岁月留痕(连续子数组)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/964235

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

poj2406(连续重复子串)

题意:判断串s是不是str^n,求str的最大长度。 解题思路:kmp可解,后缀数组的倍增算法超时。next[i]表示在第i位匹配失败后,自动跳转到next[i],所以1到next[n]这个串 等于 n-next[n]+1到n这个串。 代码如下; #include<iostream>#include<algorithm>#include<stdio.h>#include<math.

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

XTU 1233 n个硬币连续m个正面个数(dp)

题面: Coins Problem Description: Duoxida buys a bottle of MaiDong from a vending machine and the machine give her n coins back. She places them in a line randomly showing head face or tail face o

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

计算数组的斜率,偏移,R2

模拟Excel中的R2的计算。         public bool fnCheckRear_R2(List<double[]> lRear, int iMinRear, int iMaxRear, ref double dR2)         {             bool bResult = true;             int n = 0;             dou

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };

PHP7扩展开发之数组处理

前言 这次,我们将演示如何在PHP扩展中如何对数组进行处理。要实现的PHP代码如下: <?phpfunction array_concat ($arr, $prefix) {foreach($arr as $key => $val) {if (isset($prefix[$key]) && is_string($val) && is_string($prefix[$key])) {$arr[

Go 数组赋值问题

package mainimport "fmt"type Student struct {Name stringAge int}func main() {data := make(map[string]*Student)list := []Student{{Name:"a",Age:1},{Name:"b",Age:2},{Name:"c",Age:3},}// 错误 都指向了最后一个v// a