-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtriplets_optimal.java
More file actions
executable file
·113 lines (91 loc) · 3.34 KB
/
triplets_optimal.java
File metadata and controls
executable file
·113 lines (91 loc) · 3.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
public class Solution {
// Complete the triplets function below.
static int[] sortArray(int[] arr){
for(int i=0;i<arr.length;i++){
for(int j=i+1;j<arr.length-1;j++){
if(arr[i]>arr[j]){
int temp =arr[i];
arr[i] = arr[j];
arr[j] = arr[i];
}
}
}
return arr;
}
static long triplets(int[] a, int[] b, int[] c) {
long countTriplets=0,acnt=0,ccnt=0;
//sorting A,B and C arrays
a = sortArray(a);
System.out.println("Sorted A");
for(int i=0;i<a.length;i++){
System.out.println(a[i]);
}
b = sortArray(b);
c = sortArray(c);
List listA = new ArrayList(a.length);
List listB = new ArrayList(b.length);
List listC = new ArrayList(c.length);
for(int i=0;i<b.length;i++){
if(!listB.contains(b[i])){
listB.add(b[i]);
acnt=0;ccnt=0;
for(int j=0;j<a.length;j++){
if(!listA.contains(a[j]) && a[j] <= b[i]){
listA.add(a[j]);
acnt++;
}
}listA.clear();
for(int k=0;k<c.length;k++){
if(listC.contains(c[k]) && b[i]>=c[k]){
listC.add(c[k]);
ccnt++;
}
}listC.clear();
countTriplets+=acnt*ccnt;
System.out.println("dfkjnknw"+ " ac count"+acnt+ " "+ccnt+ " "+ countTriplets);
}
}
return countTriplets;
}
private static final Scanner scanner = new Scanner(System.in);
public static void main(String[] args) throws IOException {
BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));
String[] lenaLenbLenc = scanner.nextLine().split(" ");
int lena = Integer.parseInt(lenaLenbLenc[0]);
int lenb = Integer.parseInt(lenaLenbLenc[1]);
int lenc = Integer.parseInt(lenaLenbLenc[2]);
int[] arra = new int[lena];
String[] arraItems = scanner.nextLine().split(" ");
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
for (int i = 0; i < lena; i++) {
int arraItem = Integer.parseInt(arraItems[i]);
arra[i] = arraItem;
}
int[] arrb = new int[lenb];
String[] arrbItems = scanner.nextLine().split(" ");
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
for (int i = 0; i < lenb; i++) {
int arrbItem = Integer.parseInt(arrbItems[i]);
arrb[i] = arrbItem;
}
int[] arrc = new int[lenc];
String[] arrcItems = scanner.nextLine().split(" ");
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
for (int i = 0; i < lenc; i++) {
int arrcItem = Integer.parseInt(arrcItems[i]);
arrc[i] = arrcItem;
}
long ans = triplets(arra, arrb, arrc);
bufferedWriter.write(String.valueOf(ans));
bufferedWriter.newLine();
bufferedWriter.close();
scanner.close();
}
}