当前位置:   article > 正文

第十三届蓝桥杯省赛 JAVA B组(真题解析+个人体会)(已更新完G题)_蓝桥杯javab组真题解析

蓝桥杯javab组真题解析

试题 A: 星期计算【填空题】

题目:

答案:7

解析:

此题直接对7求余即可。

  1. public class Main {
  2. public static void main(String[] args) {
  3. System.out.println(Math.pow(20, 22) % 7 + 6);
  4. }
  5. }

贴一个BigInteger的代码

  1. import java.math.BigInteger;
  2. public class Main {
  3. public static void main(String[] args) {
  4. BigInteger bg = new BigInteger(20+"");
  5. BigInteger res = bg.pow(22).remainder(BigInteger.valueOf(7)).add(BigInteger.valueOf(6));
  6. System.out.println(res);
  7. }
  8. }

试题 B:【填空题】

题目:

答案:3138

这题我知道很多人把题目都给看错了,我认识好几个都是只看到了回文,没看到还有单调的条件。(大佬们都忙着做后面的题)

解析:

读题可以知道,回文数左右对称,所以只需判断是否回文,然后再判断左边的数单调不减,则右边的数一定单调不增。判断回文数可以使用双指针判断。

  1. public class Main {
  2. public static void main(String[] args) {
  3. long start = System.currentTimeMillis();
  4. int count = 0;
  5. for (int i = 2022; i <= 2022222022; i++) {
  6. if (isPalindrome(i) && check(i)) {
  7. count++;
  8. }
  9. }
  10. long end = System.currentTimeMillis();
  11. System.out.println(count);
  12. System.out.println("共用时" + (end - start) / 1000 % 60 + "秒");//测了一下时间用时40s
  13. }
  14. private static boolean check(int num) {
  15. String s = num + "";
  16. for (int i = 0; i < s.length() / 2; i++) {
  17. if (s.charAt(i) > s.charAt(i + 1)) return false;
  18. }
  19. return true;
  20. }
  21. private static boolean isPalindrome(int num) {
  22. String s = num + "";
  23. int n = s.length() - 1;
  24. for (int l = 0, r = n; l < r; l++, r --)
  25. if (s.charAt(l) != s.charAt(r)) return false;
  26. return true;
  27. }
  28. }

试题 C:字符统计【编程题】

题目:

解析:

签到题,分别统计输出即可。

  1. import java.util.Scanner;
  2. public class Main {
  3. public static void main(String[] args) {
  4. Scanner sc = new Scanner(System.in);
  5. String s = sc.nextLine();
  6. int[] arr = new int[26];
  7. for (int i = 0; i < s.length(); i++) {
  8. arr[s.charAt(i) - 'A']++;
  9. }
  10. int max = Integer.MIN_VALUE;
  11. for (int i = 0; i < 26; i++) {
  12. max = Math.max(max, arr[i]);
  13. }
  14. for (int i = 0; i < 26; i++) {
  15. if(arr[i] == max) System.out.print((char) (i+'A'));
  16. }
  17. }
  18. }

试题 D:最少刷题数【编程题】

题目:

解析:

这个题我觉得虽然是个十分题,但是还是挺难的(也可能是我太菜了)。主要是要考虑的因素比较多,核心的想法应该是要计算出左边、右边与中间相等的数的个数,分情况判断每个数加上最小刷题数与中间数相等后需不需要+1。

这题当时给我做烦了,浪费了很多时间,我只考虑了和中间的相比,比它大就输出0,比它小就输出中间的数减去num[i]+1,并没有判断左右数与中间数相等的情况,没有全部AC。这里贴一下别人的代码

  1. import java.util.Arrays;
  2. import java.util.Scanner;
  3. public class Main {
  4. public static void main(String[] args) {
  5. Scanner sc = new Scanner(System.in);
  6. int n = sc.nextInt();
  7. int[] nums = new int[n];
  8. int[] temp = new int[n];
  9. for (int i = 0; i < n; i++) {
  10. nums[i] = sc.nextInt();
  11. temp[i] = nums[i];
  12. }
  13. // 排序数组
  14. Arrays.sort(temp);
  15. // 中间的下标
  16. int midIndex = n / 2;
  17. // 中间的值
  18. int midValue = temp[midIndex];
  19. int midOption = 0;
  20. int option = 0;
  21. // 左边和中值相同值的数量
  22. int sameLeft = 0;
  23. // 右边和中值相同值的数量
  24. int sameRight = 0;
  25. for (int i = midIndex - 1, j = midIndex; i >= 0; i--, j++) {
  26. if (temp[i] == midValue) {
  27. sameLeft++;
  28. }
  29. if (temp[j] == midValue) {
  30. sameRight++;
  31. }
  32. if (temp[i] != temp[j]) {
  33. break;
  34. }
  35. }
  36. if (sameLeft >= sameRight) {
  37. option = 1;
  38. }
  39. if (sameLeft > sameRight) {
  40. midOption = 1;
  41. }
  42. for (int i = 0, len = nums.length; i < len; i++) {
  43. int count = 0;
  44. if (nums[i] == midValue) {
  45. count = midOption;
  46. } else {
  47. count = midValue - nums[i] + option;
  48. if (count < 0) {
  49. count = 0;
  50. }
  51. }
  52. if (i != n - 1) {
  53. System.out.print(count + " ");
  54. } else {
  55. System.out.println(count);
  56. }
  57. }
  58. }
  59. }

我觉得这个代码的方法还是比较巧妙的hh

-------------------------------------------------------------分界线-----------------------------------------------------------

2023年2月7日更新

核心思想:排序找中位数,然后统计左右两边比mid大和比mid小的数,分类讨论。

(感觉像个模拟题)挺烦的十分题

  1. import java.util.Arrays;
  2. import java.util.Scanner;
  3. public class Main {
  4. public static void main(String[] args) {
  5. Scanner sc = new Scanner(System.in);
  6. int n = sc.nextInt();
  7. int[] a = new int[n], tmp = new int[n];
  8. for (int i = 0; i < n; i++) {
  9. a[i] = sc.nextInt();
  10. tmp[i] = a[i];
  11. }
  12. Arrays.sort(tmp);
  13. int mid = tmp[n / 2];
  14. int bg_cnt = 0, sml_cnt = 0; // 记录比mid大的和比mid小的数
  15. for (int i = 0; i < n; i++)
  16. if (a[i] < mid) sml_cnt ++;
  17. else if (a[i] > mid) bg_cnt ++;
  18. if (bg_cnt < sml_cnt) {
  19. for (int i = 0; i < n; i++)
  20. if (a[i] < mid) System.out.print(mid - a[i] + " ");
  21. else System.out.print(0 + " ");
  22. } else if (bg_cnt == sml_cnt){
  23. for (int i = 0; i < n; i++)
  24. if (a[i] < mid) System.out.print(mid - a[i] + 1 + " ");
  25. else System.out.print(0 + " ");
  26. }else {
  27. for (int i = 0; i < n; i++)
  28. if (a[i] <= mid) System.out.print(mid - a[i] + 1 + " ");
  29. else System.out.print(0 + " ");
  30. }
  31. }
  32. }

试题 E: 求阶乘

题目:

解析

这题我又给想简单了,此题的数据范围非常大,所以可能只能过极个别样例。也不能直接从1到N枚举判断,突破口是数字中谁和谁相乘得到10,很容易想到2*5,2的个数肯定比5多,所以N的阶乘最后有多少0 就看N能分成多少5 。可以从1~N每个数都除以5,然后统计个5的个数,因为25/5也会得到5,所以需要用循环计算。

暴力法

  1. import java.util.Scanner;
  2. public class Main {
  3. //后面以0 结尾的一定是5!....(5的倍数的阶乘) 所以只需要判断5的倍数的阶乘
  4. //(判断的数)/5 就是含有5的个数 也是阶乘后0的个数
  5. public static void main(String[] args) {
  6. Scanner sc = new Scanner(System.in);
  7. long k = sc.nextLong();
  8. long count;
  9. long a = 5;//直接从5的阶乘(120)开始判断
  10. while (true) {
  11. long tempA = a;
  12. count = 0;
  13. while (tempA > 0) {
  14. tempA /= 5;
  15. count += tempA;
  16. }
  17. if (count < k) {
  18. a += 5;
  19. } else if (count == k) {
  20. System.out.println(a);
  21. break;
  22. } else {
  23. System.out.println(-1);
  24. break;
  25. }
  26. }
  27. }
  28. }

-------------------------------------------------------------分界线-----------------------------------------------------------

2023年2月8日更新

二分

N 越大,末尾的 0 越多,具有单调性,可以使用二分找到答案。

  1. import java.util.Scanner;
  2. public class Main {
  3. // 找N里面有多少个5(25里有两个5) 二分出一个>=k(找大于等于k的第一个位置)的最小的N,不存在则输出-1
  4. public static void main(String[] args) {
  5. Scanner sc = new Scanner(System.in);
  6. long l = 1, r = Long.MAX_VALUE-5;
  7. long k = sc.nextLong();
  8. while (l < r) {
  9. long mid = l + r >> 1;
  10. if (cal(mid) >= k) r = mid;
  11. else l = mid + 1;
  12. }
  13. if (cal(r) == k) System.out.println(r);
  14. else System.out.println(-1);
  15. }
  16. private static long cal(long num) {
  17. long cnt = 0;
  18. while (num > 0) {
  19. cnt += num / 5;
  20. num /= 5;
  21. }
  22. return cnt;
  23. }
  24. }

试题 F: 最大子矩阵

题目:

解析:单调队列+二分

这题感觉比G题还难做,考试只能打打暴力了....

  1. import java.util.ArrayDeque;
  2. import java.util.Deque;
  3. import java.util.Scanner;
  4. // 枚举行x1,x2,二分最大的列数len,维护滑动窗口为大小为len的最大值和最小值
  5. // 单调队列+二分
  6. public class Main {
  7. // 矩阵中最大值-最小值<=limit && 元素个数最多
  8. static int n, m, limit, ans;
  9. static int[][][] max, min;
  10. //max[k][i][j]代表的含义是在第k列中,第i个元素到第j个的元素最大值是多少,min数组同理。
  11. public static void main(String[] args) {
  12. Scanner sc = new Scanner(System.in);
  13. n = sc.nextInt(); m = sc.nextInt();
  14. max = new int[m + 1][n + 1][n + 1]; min = new int[m + 1][n + 1][n + 1];
  15. for (int i = 1; i <= n; i++)
  16. for (int j = 1; j <= m; j++)
  17. max[j][i][i] = min[j][i][i] = sc.nextInt();
  18. limit = sc.nextInt();
  19. for (int k = 1; k <= m; k++)
  20. for (int i = 1; i <= n; i++)
  21. for (int j = i + 1; j <= n; j++) {
  22. max[k][i][j] = Math.max(max[k][j][j], max[k][i][j - 1]);
  23. min[k][i][j] = Math.min(min[k][j][j], min[k][i][j - 1]);
  24. }
  25. for (int x1 = 1; x1 <= n; x1++)
  26. for (int x2 = x1; x2 <= n; x2++) {
  27. int l = 1, r = m;
  28. while (l < r) {
  29. int mid = l + r + 1 >> 1;
  30. if (check(x1, x2, mid)) l = mid;
  31. else r = mid - 1;
  32. }
  33. if (check(x1, x2, r)) ans = Math.max(ans, (x2 - x1 + 1) * r);
  34. }
  35. System.out.println(ans);
  36. }
  37. private static boolean check(int x1, int x2, int k) {
  38. Deque<Integer> q_min = new ArrayDeque<>();
  39. Deque<Integer> q_max = new ArrayDeque<>();
  40. // 枚举所有列
  41. for (int i = 1; i <= m; i++) {
  42. if (!q_min.isEmpty() && i - k >= q_min.peekFirst()) q_min.pollFirst();
  43. while (!q_min.isEmpty() && min[i][x1][x2] <= min[q_min.peekLast()][x1][x2]) q_min.pollLast();
  44. q_min.addLast(i);
  45. if (!q_max.isEmpty() && i - k >= q_max.peekFirst()) q_max.pollFirst();
  46. while (!q_max.isEmpty() && max[i][x1][x2] >= max[q_max.peekLast()][x1][x2]) q_max.pollLast();
  47. q_max.addLast(i);
  48. //窗口大小为k
  49. if (i >= k && max[q_max.peekFirst()][x1][x2] - min[q_min.peekFirst()][x1][x2] <= limit) return true;
  50. }
  51. return false;
  52. }
  53. }

试题 G:数组切分

题目:

 

解析:

算法1 回溯算法

枚举所有分割点
回溯算法可以枚举所有情况,当每个切分的子数组都满足题目要求时,答案++,但时间复杂度较高,会tle

小技巧
问 : 如何判断区间[i,j]是否可以组成一段连续的自然数?
答 :只需 区间最大值 - 区间最小值 == j - i (区间长度)即可

  1. import java.util.LinkedList;
  2. import java.util.Scanner;
  3. public class Main {
  4. static LinkedList<Integer> path = new LinkedList<>();
  5. static int res = 0, mod = 1000000007;
  6. public static void main(String[] args) {
  7. Scanner sc = new Scanner(System.in);
  8. int n = sc.nextInt();
  9. int[] a = new int[n];
  10. for (int i = 0; i < n; i++) a[i] = sc.nextInt();
  11. dfs(a, 0);
  12. System.out.println(res % mod);
  13. }
  14. private static void dfs(int[] a, int startindex) {
  15. int n = a.length;
  16. if (startindex == n) {
  17. res ++;
  18. return;
  19. }
  20. for (int i = startindex; i < n; i++) {
  21. if (check(a, startindex, i)) {
  22. path.add(i);
  23. dfs(a, i + 1);
  24. path.removeLast();
  25. }
  26. }
  27. }
  28. private static boolean check(int[] a, int l, int r) {
  29. int max = Integer.MIN_VALUE, min = Integer.MAX_VALUE;
  30. for (int i = l; i <= r; i++) {
  31. if (a[i] > max) max = a[i];
  32. if (a[i] < min) min = a[i];
  33. }
  34. return max - min == r - l;
  35. }
  36. }

算法2 DP(正解)

  1. import java.util.Scanner;
  2. public class Main {
  3. static int mod = 1000000007;
  4. public static void main(String[] args) {
  5. // f[i]: 以a[i]结尾的切分合法数组的方法数量
  6. Scanner sc = new Scanner(System.in);
  7. int n = sc.nextInt();
  8. int[] a = new int[n + 1];
  9. for (int i = 1; i <= n; i++) a[i] = sc.nextInt();
  10. int[] f = new int[n + 1];
  11. f[0] = 1;
  12. for (int i = 1; i <= n; i++) {
  13. int max = Integer.MIN_VALUE, min = Integer.MAX_VALUE;
  14. for (int j = i; j > 0; j--) {
  15. max = Math.max(max, a[j]);
  16. min = Math.min(min, a[j]);
  17. //如果a[j, i]是一段连续的自然数,那么就有以a[i]结尾的合法切分合法数量+=以a[j - 1]结尾的合法切分数量
  18. //即f[i] += f[j - 1]
  19. if (max - min == i - j)
  20. f[i] = (f[i] + f[j - 1]) % mod;
  21. }
  22. }
  23. System.out.println(f[n]);
  24. }
  25. }

试题 H: 回忆迷宫

题目:

解析:

试题 I: 红绿灯

题目:

解析:

试题 J: 拉箱子

题目:

解析:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/455822
推荐阅读
相关标签
  

闽ICP备14008679号