Java排列挑战是缓慢的

时间:2016-08-31 00:36:48

标签: java recursion runtime permutation

我一直致力于GeeksforGeeks的排列问题。以下是挑战的链接:http://www.practice.geeksforgeeks.org/problem-page.php?pid=702

挑战是采用一系列数字,并以2或3组为单位对这些数字的每个可能顺序进行检查,检查数字的总和是否可被3整除。在程序结束时打印出数字可被3整除的组。

一个例子是...... int [] array = {1,2,3}应打印出8。

以下是我用于此挑战的代码。代码有效,但速度很慢。运行时需要低于1.272s,那么如何才能使代码更快?或者保存它执行这么多行?

  public static void PG2(int[] array, int l, int r, Counter count){
        int newR = r - 1;
        int i;
       if(l == 2){
           String number = String.valueOf(array[0]);
           String number2 = String.valueOf(array[1]);
           number = number.concat(number2);
           int aNumber = Integer.parseInt(number);
           count.divBy3(aNumber);
       } else {
            int temp;
            int temp2;
            for(i = l; i < r; i++){
                temp = array[l];
                array[l] = array[i];
                array[i] = temp;
                PG2(array, l+1, r, count);
                temp2 = array[l];
                array[l] = array[i];
                array[i] = temp2;
            }
        }   
    }

    public static void PG3(int[] array, int l, int r, Counter count){
        int newR = r - 1;
        int i;
       if(l == 3){
           String number = String.valueOf(array[0]);
           String number2 = String.valueOf(array[1]);
           String number3 = String.valueOf(array[2]);
           number = number.concat(number2);
           number = number.concat(number3);
           int aNumber = Integer.parseInt(number);
           count.divBy3(aNumber);
       } else {
            int temp;
            int temp2;
            for(i = l; i < r; i++){
                temp = array[l];
                array[l] = array[i];
                array[i] = temp;
                PG3(array, l+1, r, count);
                temp2 = array[l];
                array[l] = array[i];
                array[i] = temp2;
            }
        }   
    }




    public static void main(String[] args) throws Exception {
        BufferedReader input = new BufferedReader(new InputStreamReader(System.in));

        String t = input.readLine();
        int T = Integer.parseInt(t);

        while(T > 0){
            String arrayS = input.readLine();
            int ArrayS = Integer.parseInt(arrayS);

            int[] newArray = new int[ArrayS];

            String arrayElements = input.readLine();
            String[] ArrayElements = arrayElements.trim().split("\\s+");
            for(int i = 0; i < ArrayS; i++){
                int num = Integer.parseInt(ArrayElements[i]);
                newArray[i] = num;
            }
            int total = 0;
            Counter count = new Counter();
            PG2(newArray, 0, ArrayS, count);
            PG3(newArray, 0, ArrayS, count);

            System.out.println(count.counter);
            T--;
        }
    }

以下是柜台类:

public class Counter {
    public int counter;

    public void divBy3(int number){
        int total = 0;
        while(number > 0){
            total += number % 10;
            number = number / 10;
        }

        if(total % 3 == 0){
            this.counter++;
        }
    }


}

1 个答案:

答案 0 :(得分:0)

您的代码正在创建许多不必要的对象。

首先,不需要计数器类,您可以轻松地保留一个符合要求的组数的int计数器。

当计算一个和是否可以被3整除时,你不需要遍历数字,只需检查(对于一个int n):if (n % 3 == 0) { ...

您正在创建字符串,然后将int转换为字符串,然后再次不必要地返回。只需将命令行中的int读入int数组并使用它。

// a main method that reads in ints and then keeps them as such
Scanner in = new Scanner(System.in);
int t = in.nextInt();
while (t > 0) {
    int n = in.nextInt();
    int[] arr = new int[n];
    for (int i = 0; i < n; i++) {
        arr[i] = in.nextInt();
    }
    int count = countGroupsOfTwo(arr);
    count += countGroupsOfThree(arr);
    System.out.println(count);
    t--;
}

最后,递归比简单的for循环迭代要慢。我个人认为递归也不会使解决方案更清晰。

我把这些建议放在了一个快速天真的解决方案中,它只用了大约1/2秒就可以运行。