题解 | #MP3光标位置#

MP3光标位置

https://www.nowcoder.com/practice/eaf5b886bd6645dd9cfb5406f3753e15

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int total = sc.nextInt();
        int index = 1;
        int pos = 1;
        String directives = sc.next();
        for (int i = 0; i < directives.length(); i++) {
            char ch = directives.charAt(i);
            switch (ch) {
                case 'U':
                    if (index > 1) {
                        index -= 1;
                        if (pos == 1) {
                            pos = 1;
                        } else {
                            pos -= 1;
                        }
                    } else if (index == 1) {
                        index = total;
                        pos = Math.min(total, 4);
                    }
                    break;
                case 'D':
                    if (index == total) {
                        index = 1;
                        pos = 1;
                    } else if (index < total) {
                        index += 1;
                        if (pos == 4 || pos == total) {
                            pos = Math.min(total, 4);
                        } else {
                            pos += 1;
                        }
                    }
                    break;
            }
        }
        for (int i = 0, j = pos - 1; i < pos - 1; i++, j--) {
            System.out.print(index - j + " ");
        }
        for (int i = pos, j = 0; i <= Math.min(total, 4); i++, j++) {
            System.out.print(index + j + " ");
        }
        System.out.println();
        System.out.println(index);
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-10 11:55
点赞 评论 收藏
分享
05-26 10:24
门头沟学院 Java
qq乃乃好喝到咩噗茶:其实是对的,线上面试容易被人当野怪刷了
找工作时遇到的神仙HR
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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