-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHackerrankPsAlgorithms0023.java
More file actions
71 lines (51 loc) · 1.97 KB
/
HackerrankPsAlgorithms0023.java
File metadata and controls
71 lines (51 loc) · 1.97 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
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
public class HackerrankPsAlgorithms0023 {
// Electronics Shop
// https://www.hackerrank.com/challenges/electronics-shop/problem?isFullScreen=true
// --- You need to fill this method ---
static int getMoneySpent(int[] keyboards, int[] drives, int b) {
int maxPriceCanSpent = -1;
for (int keyboardItem : keyboards) {
for (int driveItem : drives) {
if (keyboardItem + driveItem <= b) {
maxPriceCanSpent = Math.max(maxPriceCanSpent, keyboardItem + driveItem);
}
}
}
return maxPriceCanSpent;
}
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();
}
}