-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathherding.java
49 lines (40 loc) · 1.19 KB
/
herding.java
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
/*
ID: siyonaona
LANG: JAVA
TASK: herding
*/
import java.io.*;
import java.util.StringTokenizer;
public class herding {
static int[] cowLoc = new int[3];
static int minimumMoves (int arr[]) {
if(arr[1] - arr[0] == 2 || arr[2] - arr[1] == 2){
return 1;
} else if(arr[2] - arr[0] == 2) {
return 0;
} else {
return 2;
}
}
static int maxMoves (int[] arr) {
int d1 = arr[1] - arr[0];
int d2 = arr[2] - arr[1];
return Math.max(d1, d2);
}
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new FileReader("herding.in"));
PrintWriter pw = new PrintWriter(new FileWriter("herding.out"));
StringTokenizer st = new StringTokenizer(bf.readLine());
for(int i = 0; i <3; i++){
cowLoc[i] = Integer.parseInt(st.nextToken()); //all locations of cows are set
}
if(minimumMoves(cowLoc) == 0){
pw.println(0);
pw.println(0);
} else {
pw.println(minimumMoves(cowLoc)); //min
pw.println(maxMoves(cowLoc) - 1); //max
}
pw.close();
}
}