結果

問題 No.1279 Array Battle
ユーザー tentententen
提出日時 2020-11-09 09:16:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-07-22 15:57:35
合計ジャッジ時間 6,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,180 KB
testcase_01 AC 119 ms
41,436 KB
testcase_02 AC 124 ms
41,476 KB
testcase_03 AC 121 ms
41,356 KB
testcase_04 AC 124 ms
41,268 KB
testcase_05 AC 121 ms
41,144 KB
testcase_06 AC 124 ms
41,404 KB
testcase_07 AC 109 ms
40,140 KB
testcase_08 AC 124 ms
41,508 KB
testcase_09 AC 110 ms
40,248 KB
testcase_10 AC 124 ms
41,612 KB
testcase_11 AC 120 ms
41,272 KB
testcase_12 AC 142 ms
41,344 KB
testcase_13 AC 145 ms
41,708 KB
testcase_14 AC 168 ms
41,656 KB
testcase_15 AC 167 ms
41,640 KB
testcase_16 AC 152 ms
41,104 KB
testcase_17 AC 180 ms
41,260 KB
testcase_18 AC 168 ms
41,296 KB
testcase_19 AC 163 ms
41,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int[] aArr;
    static int[] bArr;
    static int max = 0;
    static int count = 0;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        aArr = new int[n];
        for (int i = 0; i < n; i++) {
            aArr[i] = sc.nextInt();
        }
        bArr = new int[n];
        for (int i = 0; i < n; i++) {
            bArr[i] = sc.nextInt();
        }
        boolean[] used = new boolean[n];
        int[] arr = new int[n];
        setPerm(used, arr, 0);
        System.out.println(count);
    }
    
    static void setPerm(boolean[] used, int[] arr, int idx) {
        if (idx == n) {
            int value = 0;
            for (int i = 0; i < n; i++) {
                value += Math.max(0, bArr[i] - aArr[arr[i]]);
            }
            if (max < value) {
                max = value;
                count = 1;
            } else if (max == value) {
                count++;
            }
            return;
        }
        for (int i = 0; i < n; i++) {
            if (used[i]) {
                continue;
            }
            used[i] = true;
            arr[idx] = i;
            setPerm(used, arr, idx + 1);
            used[i] = false;
        }
    }
}
0