百度笔试3/29 Java算法题目

第一题
//一开始一直30%,后来改用long就AC了
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long res = n * (n - 1) - 1;
        System.out.println(res);
    }
}
第二题
通过用例0。。。。感觉思路出问题了卡了好久
第三题
//剩20多分钟时候开始写的,过了60%超内存了
import java.util.*;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        TreeNode[] nodes = new TreeNode[n];
        for(int i = 0;i < n;i++){
            int t = sc.nextInt();
            nodes[i] = new TreeNode(t,n);
        }
        for(int i = 0;i < n - 1;i++){
            int u = sc.nextInt();
            u -= 1;
            int v = sc.nextInt();
            v -= 1;
            nodes[u].children[v] = nodes[v];
            nodes[v].children[u] = nodes[u];
        }
        int res = Integer.MIN_VALUE;
        for(int i = 0;i < n;i++){
            res = Math.max(res,getMax(nodes[i],Integer.MIN_VALUE,0));
        }
        System.out.println(res);
    }

    private static int getMax(TreeNode node,int pre,int cnt){
        if(node == null){
            return cnt;
        }
        if(node.val <= pre){
            return cnt;
        }
        cnt++;
        int max = Integer.MIN_VALUE;
        for(int i = 0;i < node.children.length;i++){
            max = Math.max(max,getMax(node.children[i],node.val,cnt));
        }
        return max;
    }
}

class TreeNode{
    public int val;
    public TreeNode[] children;
    public TreeNode(){
    }
    public TreeNode(int val,int len){
        this.val = val;
        children = new TreeNode[len];
    }
}
害,选择题做的也不好,八成又凉一次

#百度笔试##百度##笔试题目##Java工程师#
全部评论
第三题dfs加个记忆就好了。以每个点为起点的最长路径重复搜索了。
2 回复 分享
发布于 2020-03-29 21:32
请问第一题是一种取巧的算法吗?只不过恰好能AC是吗?😂
点赞 回复 分享
发布于 2020-03-30 08:48
第二题用的long也是ac0啊?有大佬贴Java代码吗
点赞 回复 分享
发布于 2020-03-30 03:28
我也是看了大家的分析,前两道题只要想出来用long别死脑筋用int就都能AC了😣
点赞 回复 分享
发布于 2020-03-29 22:01

相关推荐

06-26 19:47
中南大学 Java
悲,毕业了!这是个坏事儿啊!
爱睡觉的冰箱哥:《这是个好事啊》---峰哥浪走天涯
毕业后不工作的日子里我在...
点赞 评论 收藏
分享
认真搞学习:28小登的建议,投算法岗不要写什么物理竞赛,互联网+,多写点项目,用什么算法做了什么。还有本科算法是不可能的开发你这个也没有项目啊
点赞 评论 收藏
分享
05-14 20:34
门头沟学院 Java
窝补药贝八股:管他们,乱说,反正又不去,直接说680
点赞 评论 收藏
分享
评论
6
19
分享

创作者周榜

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