#半分全列挙について
ABCDから数を一つずつ選ぶとき、A+B+C+D/4 > A+B+C+D+k/5を満たす組み合わせの個数を数える問題を実装しましたが、nが大きくなるとタイムアウトエラーが起きます。(5秒以上処理にかかっている、処理結果は正常)
処理速度を高速化する方法を教えていただきたいです。
標準入力
n k
A1 A2 ... A_n
B1 B2 ... B_n
C1 C2 ... C_n
D1 D2 ... D_n
Java
1import java.util.*; 2import java.util.LinkedList; 3import java.util.List; 4 5public class Main { 6 public static int n; 7 public static long p; 8 public static String[][] a; 9 public static String[][] b; 10 public static List<Long> list = new LinkedList<>(); 11 public static List<Long> list2 = new LinkedList<>(); 12 public static int cnt = 0; 13 14 public static void main(String args[] ) throws Exception { 15 Scanner sc = new Scanner(System.in); 16 n = sc.nextInt(); 17 p = sc.nextInt(); 18 19 sc.skip("\n"); 20 a = new String[2][n]; 21 b = new String[2][n]; 22 for(int i = 0;i < 2;i++){ 23 a[i] = sc.nextLine().split(" "); 24 } 25 for(int i = 0;i < 2;i++){ 26 b[i] = sc.nextLine().split(" "); 27 } 28 29 containsBugWithDFS(0, 0); 30 containsBugWithDFS2(0, 0); 31 Collections.sort(list); 32 Collections.sort(list2, Collections.reverseOrder()); 33 34 int j = 0; 35 int i = 0; 36 while(i < list.size()){ 37 if(j >= list2.size() || (list.get(i)+list2.get(j))/4.0 <= p){ 38 i++; 39 j=0; 40 }else{ 41 cnt++; 42 j++; 43 } 44 } 45 System.out.println(cnt); 46 } 47 48 public static boolean containsBugWithDFS(long sum, int depth) { 49 if (depth == 2) { 50 list.add(sum); 51 return true; 52 } 53 for (int i = 0; i < n; i++) { 54 containsBugWithDFS(sum + Long.parseLong(a[depth][i]), depth + 1); 55 } 56 return true; 57 } 58 59 public static boolean containsBugWithDFS2(long sum, int depth) { 60 if (depth == 2) { 61 list2.add(sum); 62 return true; 63 } 64 for (int i = 0; i < n; i++) { 65 containsBugWithDFS2(sum + Long.parseLong(b[depth][i]), depth + 1); 66 } 67 return true; 68 } 69}
回答1件
あなたの回答
tips
プレビュー