-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay10_234B.java
More file actions
41 lines (37 loc) · 1.11 KB
/
Copy pathDay10_234B.java
File metadata and controls
41 lines (37 loc) · 1.11 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
import java.util.Scanner;
import java.util.Arrays;
public class Day10_234B {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int k = scan.nextInt();
int[] lights = new int[n];
int[] hours = new int[n];
for (int i = 0; i < n; i++) {
lights[i] = scan.nextInt();
hours[i] = i + 1;
}
for (int i = 0; i < n - 1; i++) {
int j = i;
while (j >= 0 && lights[j] > lights[j + 1]) {
int temp = lights[j];
lights[j] = lights[j + 1];
lights[j + 1] = temp;
int temp2 = hours[j];
hours[j] = hours[j + 1];
hours[j + 1] = temp2;
j--;
}
}
System.out.println(lights[n - k]);
int[] ans = new int[k];
int j = n - k;
for (int i = 0; i < k; i++) {
ans[i] = hours[j];
j++;
}
Arrays.sort(ans);
for (int i = 0; i < k; i++)
System.out.print(ans[i] + " ");
}
}