-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathElectronicsShop.java
More file actions
78 lines (57 loc) · 2.3 KB
/
ElectronicsShop.java
File metadata and controls
78 lines (57 loc) · 2.3 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
import java.io.*;
import java.math.*;
import java.text.*;
import java.util.*;
import java.util.regex.*;
public class ElectronicsShop {
/*
* Complete the getMoneySpent function below.
*/
static int getMoneySpent(int[] keyboards, int[] drives, int b) {
Arrays.sort(keyboards);
Arrays.sort(drives);
if(drives[0] + keyboards[0] > b){
return -1;
}
int diference = 100000000;
for(int i=keyboards.length-1;i >= 0;i--){
for(int j=drives.length-1;j >= 0;j--){
if((b - (keyboards[i]+drives[j])) < diference && (keyboards[i]+drives[j]) <= b){
diference = (b - (keyboards[i]+drives[j]));
}
}
}
return b - diference;
}
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();
}
}