-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathElectronics_Shop.java
More file actions
82 lines (59 loc) · 2.38 KB
/
Electronics_Shop.java
File metadata and controls
82 lines (59 loc) · 2.38 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
/* Problem Link : https://www.hackerrank.com/challenges/electronics-shop/problem */
import java.io.*;
import java.util.*;
public class Solution {
/*
* getMoneySpent function to get the total money spent
*/
static int getMoneySpent(int[] keyboards, int[] drives, int b) {
HashMap<Integer, Boolean> ans = new HashMap<>();
for (int i = 0; i < keyboards.length; i++) {
for (int j = 0; j < drives.length; j++) {
if (keyboards[i] + drives[j] <= b) {
ans.put((keyboards[i] + drives[j]), true);
}
}
}
int max = -1;
if (!ans.isEmpty()) {
for (Integer val : ans.keySet()) {
if (val > max) {
max = val;
}
}
}
return max;
}
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[] bnm = scanner.nextLine().split(" ");
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])*");
int b = Integer.parseInt(bnm[0]);
int n = Integer.parseInt(bnm[1]);
int m = Integer.parseInt(bnm[2]);
int[] keyboards = new int[n];
String[] keyboardsItems = scanner.nextLine().split(" ");
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])*");
for (int keyboardsItr = 0; keyboardsItr < n; keyboardsItr++) {
int keyboardsItem = Integer.parseInt(keyboardsItems[keyboardsItr]);
keyboards[keyboardsItr] = keyboardsItem;
}
int[] drives = new int[m];
String[] drivesItems = scanner.nextLine().split(" ");
scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])*");
for (int drivesItr = 0; drivesItr < m; drivesItr++) {
int drivesItem = Integer.parseInt(drivesItems[drivesItr]);
drives[drivesItr] = drivesItem;
}
/*
* The maximum amount of money she can spend on a keyboard and USB
* drive, or -1 if she can't purchase both items.
*/
int moneySpent = getMoneySpent(keyboards, drives, b);
bufferedWriter.write(String.valueOf(moneySpent));
bufferedWriter.newLine();
bufferedWriter.close();
scanner.close();
}
}