钟xxx


私信TA

用户名:dotcpp0661013

访问量:1787

签 名:

等  级
排  名 1589
经  验 2766
参赛次数 0
文章发表 23
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:
就是依次遍历,从前向后找,看看当前位置的值是否大于内部循环的值,如果大则肯定可以;如果相等,就要根据这两个位置往内部方向进行判断,i++,j--,采用count作为临时计数,然后判断往里走之后的大小注意事项:

参考代码:

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);
        String input = sc.nextLine();
        String[] inputArray = input.split("");
        int[] array = new int[inputArray.length];
        for (int i = 0; i < array.length; i++) {
            array[i] = Integer.parseInt(inputArray[i]);
        }
        int sum = 0;

        for (int i = 0; i < array.length; i++) {
            for (int j = i + 1; j < array.length; j++) {
                if (array[i] > array[j]) {
                    sum++;
//                    System.out.println(i + " " + j);
                } else if (array[i] == array[j]) {
                    int count = 0;
                    while (i + count < j - count) {
                        count++;
                        if (array[i + count] > array[j - count]) {
                            sum++;
//                            System.out.println((i) + " " + (j));
                            break;
                        } else if (array[i + count] < array[j - count]) {
                            break;
                        }
                    }
                }
            }
        }
        System.out.println(sum);
    }
}


 

0.0分

1 人评分

  评论区

  • «
  • »