結果

問題 No.1279 Array Battle
ユーザー ks2mks2m
提出日時 2020-11-06 21:25:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 79,628 KB
実行使用メモリ 62,672 KB
最終ジャッジ日時 2024-07-22 12:05:01
合計ジャッジ時間 7,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,796 KB
testcase_01 AC 133 ms
53,928 KB
testcase_02 AC 138 ms
54,240 KB
testcase_03 AC 130 ms
54,176 KB
testcase_04 AC 133 ms
54,120 KB
testcase_05 AC 132 ms
54,096 KB
testcase_06 AC 131 ms
54,304 KB
testcase_07 AC 129 ms
53,964 KB
testcase_08 AC 131 ms
54,392 KB
testcase_09 AC 135 ms
54,184 KB
testcase_10 AC 126 ms
53,152 KB
testcase_11 AC 157 ms
54,500 KB
testcase_12 AC 184 ms
55,540 KB
testcase_13 AC 288 ms
62,340 KB
testcase_14 AC 278 ms
61,792 KB
testcase_15 AC 435 ms
62,152 KB
testcase_16 AC 435 ms
62,672 KB
testcase_17 AC 458 ms
62,380 KB
testcase_18 AC 462 ms
62,564 KB
testcase_19 AC 460 ms
62,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedHashSet;
import java.util.Scanner;
import java.util.TreeMap;

public class Main {
	static int n;
	static int[] a, b;
	static TreeMap<Integer, Integer> map;

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		b = new int[n];
		for (int i = 0; i < n; i++) {
			b[i] = sc.nextInt();
		}
		sc.close();

		map = new TreeMap<>();
		permutation(new LinkedHashSet<Integer>());
		System.out.println(map.lastEntry().getValue());
	}

	static void permutation(LinkedHashSet<Integer> set) {
		if (set.size() == n) {
			int sum = 0;
			int j = 0;
			for (int i : set) {
				int val = Math.max(a[i] - b[j], 0);
				sum += val;
				j++;
			}
			map.put(sum, map.getOrDefault(sum, 0) + 1);
			return;
		}

		for (int i = 0; i < n; i++) {
			if (!set.contains(i)) {
				set.add(i);
				permutation(set);
				set.remove(i);
			}
		}
	}
}
0