2024.09.14 360笔试-盘古开天辟地

import java.util.Arrays;

public class Solution {

    // 向上修改数组
    public static int updateArrayUp(int[] nums, int k) {
        int n = nums.length;
        if (k + 1 < n){
            nums[k + 1] = nums[k] + 1;
        }
        return subArray(nums);
    }
    // 向下修改数组
    public static int updateArrayDown(int[] nums, int k) {
        int n = nums.length;
        if (k + 1 < n){
            if (nums[k + 1] > 1) nums[k] = nums[k + 1] - 1;
        }
        return subArray(nums);
    }

    // 求修改后最长子数组长度
    public static int subArray(int[] nums) {
        int n = nums.length;
        int maxLen = 0;
        int i = 0;
        while (i < n){
            int j = i;
            while (j + 1 < n && nums[j] < nums[j + 1]){
                j++;
            }
            maxLen = Math.max(maxLen, j - i + 1);
            i = j + 1;
        }
        return maxLen;
    }

    // 逐一修改位置求子数组长度
    public static int maxSubArray(int[] nums) {
        int maxLen = 0;
        int n = nums.length;
        for (int i = 0; i < n; i++) {
            maxLen = Math.max(maxLen, updateArrayUp(Arrays.copyOf(nums, n), i));
            maxLen = Math.max(maxLen, updateArrayDown(Arrays.copyOf(nums, n), i));
        }
        return maxLen;
    }


    public static void main(String[] args) {

//        int[] arr= {1, 2, 3, 4, 5};
//        int[] arr= {5, 4, 3, 2, 1};
//        int[] arr= {2, 6, 2, 3, 1};
//        int[] arr= {8, 6, 2, 3};
        int[] arr= {5, 6, 7, 3, 10, 12, 13, 6};
//        int[] arr= {1};
//        int[] arr= {0};
        int res = maxSubArray(arr);
        System.out.println(res);
    }
}

#360笔试#
全部评论

相关推荐

06-05 19:46
已编辑
武汉大学 后端
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-09 16:15
我应届生,去年10月份开始在这家公司实习,到今年10月份正好一年想(实习+试用期),在想要不要提前9月份就离职,这样好找工作些,但又差一个月满一年,又怕10月份国庆回来离职,容易错过了下半年的金九银十,到年底容易gap到年后
小破站_程序员YT:说这家公司不好吧,你干了快一年 说这家公司好吧,你刚毕业就想跑路说你不懂行情吧,你怕错过金九银十说 你懂行情吧,校招阶段在实习,毕业社招想换工作 哥们,我该怎么劝你留下来呢
应届生,你找到工作了吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务