获赞
710
粉丝
130
关注
47
看过 TA
147
东北大学
2020
Java
IP属地:上海
暂未填写个人简介
私信
关注
2020-08-22 17:41
已编辑
拼多多_智能客服_Java开发工程师
没有及时保存果然今天就被公关掉删帖了,是我吃瓜经验不足 各种歧视是客观存在的,期盼男性领导人多为女性考虑也是不现实的,但发生过的事情还是要有所记录的好哪怕是为了让我们正视现实更加努力呢
过客浅:我觉得不能一棒子打死把,主要是看部门领导的。同事的实习生offer给的都很随便,有些我觉得很水的实习生,都能发算法offer,其中也包括一个双非女生。 所以我觉得真不是公司问题,可能是部门问题,博主可以发出具体部门来,这要是歧视,你也没必要给这种部门留脸面,更没必要diss整个公司。
0 点赞 评论 收藏
分享
2020-03-30 10:53
已编辑
拼多多_智能客服_Java开发工程师
这题应该怎么回答
eeeaddc:考虑MTU是1500byte, 不考虑应用层对失败连接重试, 那么1次更好, 它会被切分成三个数据包发送. 而另外的方案会发送四个数据包
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
暴力连10%都不给过,嘤第一题跟着它的思路走了半天,算最大公约数最小公倍数,然后30%超时。浪费了半个多小时,拿脑子一想,肯定是找最大互质对,然后n和n-1铁定互质,最后输出(n-1)*n-1就过了第三题树的最长递增路径也挺简单的,接收输入的时候前比后小就存后面的数可以抵达前面的数,反之存前面的数可以抵达后面的数,然后找每个点能走多深就行了。但是第二题那个一次操作最大数-n,剩下数+1,让最大数小于n的操作次数这个题是咋做的?因为第一题耽误时间了,先做的编程,写个暴力就去做选择了,暴力毛也没过……
毛草球:第三题ac代码(树上的最长路径) import java.util.ArrayList; import java.util.List; import java.util.Scanner; /**  * @author zhaole.myy  * @date 2019/9/24  */ public class bd2019092403 {     public static void main(String[] args) {         Scanner sc = new Scanner(System.in);         int n = sc.nextInt();         int[] a = new int[n];         for (int i = 0; i < n; i++) {             a[i] = sc.nextInt();         }         List<List<Integer>> l = new ArrayList<>();//向下可达         for (int i = 0; i < n; i++) {             l.add(new ArrayList<>());         }         for (int i = 0; i < n - 1; i++) {             int father = sc.nextInt();             int son = sc.nextInt();             if (a[father - 1] < a[son - 1]) l.get(father - 1).add(son - 1);             else if (a[father - 1] > a[son - 1]) l.get(son - 1).add(father - 1);         }         sc.close();         System.out.println(answer(a,l));     }     private static int answer(int[] a, List<List<Integer>> l) {         int[] longest=new int[a.length];         for (int i = 0; i <longest.length ; i++) {             longest[i]=getLongest(i,l);         }         int max=Integer.MIN_VALUE;         for (int i = 0; i <longest.length ; i++) {             if(max<longest[i]) max=longest[i];         }         return max;     }     private static int getLongest(int i,List<List<Integer>> l){         if(l.get(i).size()==0) return 1;         List<Integer> canArrive=l.get(i);         int max=getLongest(canArrive.get(0),l);         for (int j = 1; j < canArrive.size(); j++) {             int t=getLongest(canArrive.get(j),l);             if(max<t) max=t;         }         return max+1;     } }
投递百度等公司10个岗位 >
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务