-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFraudNotification.java
More file actions
139 lines (108 loc) · 3.62 KB
/
FraudNotification.java
File metadata and controls
139 lines (108 loc) · 3.62 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import java.io.*;
import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
/*
Name: Fraudulent Activity Notifications
Source: HackerRank
Link: https://www.hackerrank.com/challenges/fraudulent-activity-notifications/problem?h_l=interview&playlist_slugs%5B%5D=interview-preparation-kit&playlist_slugs%5B%5D=sorting
*/
public class FraudNotification {
// Complete the activityNotifications function below.
static int activityNotifications(int[] expenditure, int d) {
int len = expenditure.length;// 9
int start = (len-d);// d=5, start =4
int count;
count=0;
int j;
HashMap<Integer, Integer> ht = new HashMap<Integer, Integer>();
for(int i=0; i<start; i++)
{ float mid=0;
float sum=0;
if(i==0)
{
for( j =0; j<d; j++)
{
ht.put(expenditure[j], ht.getOrDefault(expenditure[j], 0)+1);
}
}
else
{
int val =ht.get(expenditure[i-1])-1;
if(val==0)
{
ht.remove(expenditure[i-1]);
}
else
{
ht.put(expenditure[i-1], val);
}
ht.put(expenditure[i+d-1], ht.getOrDefault(expenditure[i+d-1], 0)+1);
}
Set<Integer> values = ht.keySet();
if(d%2==0)
{
int flag =2;
for(int val: values)
{
sum+= ht.get(val);
if(sum>=(float)d/2 && flag>0)
{
if(sum>(float)d/2 && flag==2)
{
mid+= 2* val;
flag=0;
}
else if(sum> (float)d/2&& flag==1 )
{
mid+= val;
flag--;
}
else if((sum== (float)d/2))
{
mid+= val;
flag--;
}
}
if(flag==0)
{
break;
}
}
mid = mid/2;
}
else
{
for(int val: values)
{
sum+= ht.get(val);
if(sum>= (float)d/2)
{
mid = val;
break;
}
}
}
if(expenditure[i+d]>= 2*mid){
count++;
}
}
return count;
}
private static final Scanner scanner = new Scanner(System.in);
public static void main(String[] args) throws IOException {
BufferedReader bufferedReader = new BufferedReader(new FileReader("input.txt"));
String[] nd = scanner.nextLine().split(" ");
int n = Integer.parseInt(nd[0]);
int d = Integer.parseInt(nd[1]);
int[] expenditure = new int[n];
String[] expenditureItems = bufferedReader.readLine().split(" ");
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
for (int i = 0; i < n; i++) {
int expenditureItem = Integer.parseInt(expenditureItems[i]);
expenditure[i] = expenditureItem;
}
int result = activityNotifications(expenditure, d);
System.out.println("Result: "+result);
scanner.close();
}
}