全部评论
这也太🐶了,我电脑屏幕都快看破了也不知道是什么问题
太恶心人了吧,咱们可以反馈重评吗
卧槽?
这是啥意思,我也20,while cin 一个个加吗,我直接for循环取值了😓
???震惊
请问可以去最高分吗,我最后没改过来😭
package org.wangyi; import java.util.*; public class Test01 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int[] jump=new int[n]; for(int i=0;i<n;i++){ jump[i]=sc.nextInt(); } int res=bfs(jump); System.out.println(res); } public static int bfs(int[] jump){ Queue<Integer> queue=new LinkedList<>(); queue.offer(0); int cnt=0; while (!queue.isEmpty()) { int size=queue.size(); for(int k=0;k<size;k++){ Integer node = queue.poll(); if(node>=jump.length){ return cnt; } for(int i=0;i<node;i++){ queue.offer(i); } queue.offer(node+jump[node]); } cnt++; } return cnt; } }
代码写好了 输入搞崩了
究极无语...
6.67 0 0 人麻了,测试用例都过了呀,自己造了一些数据也过了
请问可以用本地IDE嘛
无语,看了一个小时都不觉得有错就直接交卷了。结果给我这样搞我?
阿伟yyds
问一下 大家有面试了吗
相关推荐