Task: | Mex value |
Sender: | fjuengermann |
Submission time: | 2017-01-22 12:01:27 +0200 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.16 s | 1 | details |
#2 | RUNTIME ERROR | 0.18 s | 1 | details |
#3 | RUNTIME ERROR | 0.16 s | 1 | details |
#4 | RUNTIME ERROR | 0.16 s | 1 | details |
#5 | RUNTIME ERROR | 0.15 s | 1 | details |
#6 | RUNTIME ERROR | 0.16 s | 1 | details |
#7 | RUNTIME ERROR | 0.17 s | 1 | details |
#8 | RUNTIME ERROR | 0.16 s | 1 | details |
#9 | RUNTIME ERROR | 0.15 s | 1 | details |
#10 | RUNTIME ERROR | 0.14 s | 1 | details |
#11 | RUNTIME ERROR | 0.39 s | 2 | details |
#12 | RUNTIME ERROR | 0.35 s | 2 | details |
#13 | RUNTIME ERROR | 0.35 s | 2 | details |
#14 | RUNTIME ERROR | 0.39 s | 2 | details |
#15 | RUNTIME ERROR | 0.34 s | 2 | details |
#16 | RUNTIME ERROR | 0.42 s | 2 | details |
#17 | RUNTIME ERROR | 0.36 s | 2 | details |
#18 | RUNTIME ERROR | 0.36 s | 2 | details |
#19 | RUNTIME ERROR | 0.40 s | 2 | details |
#20 | RUNTIME ERROR | 0.35 s | 2 | details |
Code
import java.util.*;/*** Created by Florian on 22-Jan-17.*/public class MexValue {public static void main(String args[]) {Scanner sc = new Scanner(System.in);StringTokenizer st = new StringTokenizer(sc.nextLine());int n = Integer.parseInt(st.nextToken());int k = Integer.parseInt(st.nextToken());st = new StringTokenizer(sc.nextLine());int[] nums = new int[n];for (int i = 0; i < n; i++) {nums[i] = Integer.parseInt(st.nextToken());}// HashSet<Integer> set = new HashSet<>();// TreeSet<Int> tree = new TreeSet<>();int[] subList = new int[k];Integer[] order = new Integer[k];for (int i = 0; i < k; i++) {// set.add(nums[i]);// tree.add(nums[i]);subList[i] = nums[i];order[i] = i;}int posL = 0, posH = k;while (posH <= n) {Arrays.sort(order, new Comparator<Integer>() {@Overridepublic int compare(Integer o1, Integer o2) {return (int) Math.signum(subList[o1] - subList[o2]);}});// int minV = subList[order[0]];// if (minV == 0) {// System.out.println(0);// } else {int i = 0;int j = 0;while (subList[order[j]] == i) {i++;j++;}System.out.print(i);// }if (posH < n) {// set.remove(nums[posL]);// set.add(nums[posH]);// tree.remove(nums[posL]);// tree.add(nums[posH]);subList[posL % k] = nums[posH];System.out.print(' ');}posL++;posH++;}System.out.println();}static class Int implements Comparator {int val, id;static int count;public Int(int val) {this.val = val;id = count++;}@Overridepublic int compare(Object o1, Object o2) {return 0;}}}
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 9 1 0 5 7 2 8 6 3 4... |
correct output |
---|
4 10 9 1 1 1 1 1 1 1 1 4 10 3 ... |
user output |
---|
4 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 2
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 4 3 8 1 0 9 5 7 2 6... |
correct output |
---|
6 10 4 3 3 1 1 1 1 1 3 3 10 6 ... |
user output |
---|
6 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 3
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 9 2 3 1 0 8 5 6 4 7... |
correct output |
---|
7 10 9 2 2 1 0 1 1 1 2 9 10 4 ... |
user output |
---|
7 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 4
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 3 0 4 6 5 7 1 2 8 9... |
correct output |
---|
9 10 3 0 0 0 0 0 4 2 2 2 10 6 ... |
user output |
---|
9 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 5
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ... |
correct output |
---|
10 10 10 10 10 10 10 10 10 10 ... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 6
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 0 5 1 9 3 4 6 7 2 8... |
correct output |
---|
8 10 0 5 1 1 1 1 1 5 2 5 10 0 ... |
user output |
---|
8 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 7
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 1 2 9 3 8 0 4 7 5 6... |
correct output |
---|
6 10 1 1 1 1 2 0 0 2 3 9 10 6 ... |
user output |
---|
6 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 8
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 5 0 6 7 1 4 8 3 9 2... |
correct output |
---|
2 10 5 0 0 0 0 0 0 0 0 1 10 9 ... |
user output |
---|
2 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 9
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 1000000000 7 3 0 1 4 9 2 5 6 8... |
correct output |
---|
8 10 7 3 0 0 0 0 7 5 5 5 10 8 ... |
user output |
---|
8 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 10
Group: 1
Verdict: RUNTIME ERROR
input |
---|
100 10 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ... |
correct output |
---|
10 10 10 10 10 10 10 10 10 10 ... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10 at MexValue.main(MexValue.java:43)
Test 11
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 4786 3512 3285 1919... |
correct output |
---|
9547 10000 4786 3512 3285 1919... |
user output |
---|
9547 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 12
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 7981 3955 790 45 34... |
correct output |
---|
7657 10000 7981 3955 790 45 45... |
user output |
---|
7657 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 13
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 2329 1825 9435 3800... |
correct output |
---|
5701 10000 2329 1825 1825 1825... |
user output |
---|
5701 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 14
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 2754 6029 8007 6286... |
correct output |
---|
1423 10000 2754 2754 2754 2754... |
user output |
---|
1423 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 15
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
correct output |
---|
10000 10000 10000 10000 10000 ... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 16
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 7560 4634 7044 3853... |
correct output |
---|
9855 10000 7560 4634 4634 3853... |
user output |
---|
9855 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 17
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 7945 6674 3975 3002... |
correct output |
---|
6373 10000 7945 6674 3975 3002... |
user output |
---|
6373 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 18
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 2506 6827 6871 8593... |
correct output |
---|
2978 10000 2506 2506 2506 2506... |
user output |
---|
2978 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 19
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 1000000000 2769 5036 539 4409 ... |
correct output |
---|
2249 10000 2769 2769 539 539 5... |
user output |
---|
2249 |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)
Test 20
Group: 2
Verdict: RUNTIME ERROR
input |
---|
100000 10000 0 1 2 3 4 5 6 7 8 9 10 11 12 1... |
correct output |
---|
10000 10000 10000 10000 10000 ... |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 10000 at MexValue.main(MexValue.java:43)