-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrog2.java
More file actions
39 lines (32 loc) · 799 Bytes
/
Frog2.java
File metadata and controls
39 lines (32 loc) · 799 Bytes
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
import java.util.*;
import java.io.*;
public class Frog2 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] s = br.readLine().split(" ");
int n = Integer.parseInt(s[0]);
int k = Integer.parseInt(s[1]);
s = br.readLine().split(" ");
int[] h = new int[n];
for (int i = 0; i < n; i++)
h[i] = Integer.parseInt(s[i]);
if (n == 2) {
System.out.println(h[1] - h[0]);
return;
}
int[] min = new int[n];
for (int i = 1; i < n; i++) {
int m = Integer.MAX_VALUE;
for (int j = 1; j <= k; j++) {
int x = Math.abs(h[i] - h[i - j]) + min[i-j];
if (m > x) {
m = x;
}
if (i - j == 0)
break;
}
min[i] = m;
}
System.out.println(min[n-1]);
}
}