zoom3-26-笔试

public class Zoom01 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNextLine()){
            String[] s = sc.nextLine().split(",");
            double[] nums = new double[s.length];
            for(int i=0;i<s.length;i++){
                nums[i] = Double.parseDouble(s[i]);
            }
            System.out.println(Arrays.toString(nums));
            System.out.println(getMax(nums));
        }
    }
    public static double getMax(double[] nums){
        /**
         * -3,1,0,6,0.9,8,-2
         * 43.2
         * 使用dp来记录第i位包括为底的乘积最大子数组
         */
        if(nums.length==0) return 0;
        if(nums.length==1) return nums[1];
        int n = nums.length;
        double[] dp = new double[n+1];
        dp[0] = 1;
        double max = 0;
        for(int i=1;i<n+1;i++){
            dp[i] = Math.max(dp[i-1]*nums[i-1],nums[i-1]);
            max = Math.max(dp[i],max);
        }
        return max;
    }
}

import java.util.Scanner;

/**
 * @description:
 * @author: tkcz
 * @time: 2022/3/26 20:47
 */

public class Zoom02 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()){
            int m = sc.nextInt();
            int n = sc.nextInt();
            int[][] graph = new int[m][n];
            for(int i=0;i<m;i++){
                for(int j=0;j<n;j++){
                    graph[i][j] = sc.nextInt();
                }
            }
            System.out.println(minTravesal(graph));
        }
    }
    public static int getMin(int s,int x,int z,int y){
        int a = Math.min(s,x);
        int b = Math.min(z,y);
        return Math.min(a,b);
    }
    public static int minTravesal(int[][] graph){
        int m = graph.length;
        int n = graph[0].length;
        int[][] road = new int[m][n];
        road[0][0] = graph[0][0];
        for(int i=0;i<m;i++){
            for(int j=0;j<n;j++){
                if(graph[i][j]==0){
                    road[i][j]=0;

1个小时,第二大题代码还没贴上去,服了,选择题就该放弃的
#Zoom##ZOOM##笔经#
全部评论
校友啥时候投的,我直接简历挂了
点赞 回复 分享
发布于 2022-03-28 21:26
老哥,有后续通知吗
点赞 回复 分享
发布于 2022-03-29 13:04
老哥春招还是实习啊
点赞 回复 分享
发布于 2022-04-02 23:56
请问编程题占多少分啊
点赞 回复 分享
发布于 2022-05-12 16:38

相关推荐

点赞 评论 收藏
分享
10-17 10:05
已编辑
北华大学 全栈开发
牛客872465272号:掉头发了哥
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-27 10:46
点赞 评论 收藏
分享
评论
4
10
分享
牛客网
牛客企业服务