| Task: | Thieves and Prisons |
| Sender: | William Bille Meyling |
| Submission time: | 2019-03-06 14:01:33 +0200 |
| Language: | Java |
| Status: | READY |
| Result: | 8 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 8 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| #4 | TIME LIMIT EXCEEDED | 0 |
| #5 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.28 s | 2, 4, 5 | details |
| #2 | ACCEPTED | 0.15 s | 2, 4, 5 | details |
| #3 | ACCEPTED | 0.16 s | 2, 4, 5 | details |
| #4 | ACCEPTED | 0.16 s | 2, 4, 5 | details |
| #5 | ACCEPTED | 0.16 s | 2, 4, 5 | details |
| #6 | ACCEPTED | 0.27 s | 4, 5 | details |
| #7 | ACCEPTED | 0.16 s | 4, 5 | details |
| #8 | ACCEPTED | 0.28 s | 4, 5 | details |
| #9 | ACCEPTED | 0.28 s | 1, 3, 4, 5 | details |
| #10 | ACCEPTED | 0.29 s | 1, 3, 4, 5 | details |
| #11 | ACCEPTED | 0.29 s | 1, 3, 4, 5 | details |
| #12 | ACCEPTED | 0.15 s | 1, 3, 4, 5 | details |
| #13 | ACCEPTED | 0.28 s | 1, 3, 4, 5 | details |
| #14 | ACCEPTED | 0.27 s | 1, 3, 4, 5 | details |
| #15 | ACCEPTED | 0.28 s | 1, 3, 4, 5 | details |
| #16 | ACCEPTED | 0.16 s | 1, 3, 4, 5 | details |
| #17 | ACCEPTED | 0.16 s | 1, 2, 3, 4, 5 | details |
| #18 | ACCEPTED | 0.29 s | 1, 3, 4, 5 | details |
| #19 | TIME LIMIT EXCEEDED | -- | 2, 5 | details |
| #20 | TIME LIMIT EXCEEDED | -- | 2, 5 | details |
| #21 | TIME LIMIT EXCEEDED | -- | 2, 5 | details |
| #22 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #23 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #24 | ACCEPTED | 0.34 s | 3, 4, 5 | details |
| #25 | ACCEPTED | 0.34 s | 3, 4, 5 | details |
| #26 | ACCEPTED | 0.34 s | 3, 4, 5 | details |
| #27 | ACCEPTED | 0.35 s | 3, 4, 5 | details |
| #28 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #29 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #30 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #31 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #32 | TIME LIMIT EXCEEDED | -- | 2, 4, 5 | details |
| #33 | TIME LIMIT EXCEEDED | -- | 2, 4, 5 | details |
| #34 | TIME LIMIT EXCEEDED | -- | 2, 4, 5 | details |
| #35 | TIME LIMIT EXCEEDED | -- | 2, 4, 5 | details |
| #36 | TIME LIMIT EXCEEDED | -- | 3, 5 | details |
| #37 | TIME LIMIT EXCEEDED | -- | 3, 5 | details |
| #38 | TIME LIMIT EXCEEDED | -- | 3, 5 | details |
| #39 | TIME LIMIT EXCEEDED | -- | 3, 5 | details |
| #40 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #41 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #42 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #43 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #44 | TIME LIMIT EXCEEDED | -- | 2, 5 | details |
| #45 | TIME LIMIT EXCEEDED | -- | 2, 5 | details |
| #46 | TIME LIMIT EXCEEDED | -- | 2, 5 | details |
| #47 | TIME LIMIT EXCEEDED | -- | 2, 5 | details |
Compiler report
Note: input/Thieves_and_Prisons_v3.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.
Code
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
//just checking all combis to get some points
// it will get stack overflow
public class Thieves_and_Prisons_v3 {
private static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
private static boolean impossible = true;
private static ArrayList<Integer> solution;
private static String[] inputs;
public static void main(String[] args) throws IOException {
String[] input = br.readLine().split(" ");
int N = Integer.valueOf(input[0]);
int K = Integer.valueOf(input[1]);
int M = Integer.valueOf(input[2]);
//HashSet<Character> thieves = new HashSet<>();
ArrayList<HashSet> prisons = new ArrayList<HashSet>();
for(int i = 0; i < K; i++) prisons.add(new HashSet<>());
inputs = new String[M];
for(int i = M-1; i >= 0; i--) {
inputs[i] = br.readLine();
}
rec(M-1, prisons, new ArrayList<>(), new boolean[N+1]);
if(!impossible){
for(int i = 0; i < solution.size(); i++){
System.out.print(Integer.toString(solution.get(i)) + (i == solution.size()-1 ? "" : " "));
}
}else{
System.out.print("IMPOSSIBLE");
}
}
private static boolean rec(int m, ArrayList<HashSet> prisons, ArrayList<Integer> changes, boolean[] thieves) throws IOException {
if(m == -1){
impossible = false;
solution = changes;
return true;
}
String[] input = inputs[m].split(" ");
if(input[0].equals("C")){
for(int i = 0; i < prisons.size(); i++){
if(!prisons.get(i).contains(input[1]) && !thieves[Integer.valueOf(input[1])]){
ArrayList<HashSet> copy = new ArrayList<>();
for(int j = 0; j < prisons.size(); j++) copy.add(new HashSet(prisons.get(j)));
copy.get(i).add(input[1]);
ArrayList<Integer> copy_2 = new ArrayList<>(changes);
copy_2.add(i+1);
boolean[] copy_3 = Arrays.copyOfRange(thieves, 0, thieves.length);
copy_3[Integer.valueOf(input[1])] = true;
boolean temp = rec(m - 1, copy, copy_2, copy_3);
if(temp){
return temp;
}
}
}
}else{
for(int i = 0; i < prisons.size(); i++){
if(prisons.get(i).size() != 0 && !thieves[Integer.valueOf(input[1])]){
ArrayList<HashSet> copy = new ArrayList<>();
for(int j = 0; j < prisons.size(); j++) copy.add(new HashSet(prisons.get(j)));
copy.set(i, new HashSet());
ArrayList<Integer> copy_2 = new ArrayList<>(changes);
copy_2.add(i+1);
boolean[] copy_3 = Arrays.copyOfRange(thieves, 0, thieves.length);
ArrayList<String> prisoners = new ArrayList<>(prisons.get(i));
for(int j = 0; j < prisoners.size(); j++){
copy_3[Integer.valueOf(prisoners.get(j))] = false;
}
boolean temp = rec(m - 1, copy, copy_2, copy_3);
if(temp){
return temp;
}
}
}
}
return false;
}
}
Test details
Test 1
Group: 2, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 1 1 1 C 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Group: 2, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 1 1 1 O 1 |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 3
Group: 2, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 1 1 2 C 1 C 1 |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 4
Group: 2, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 1 1 2 C 1 O 1 |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 5
Group: 2, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 1 1 2 O 1 C 1 |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 6
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 2 1 2 C 1 C 2 |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| 1 1 |
Test 7
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 2 1 2 C 1 O 1 |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 8
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 2 1 2 C 1 O 2 |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| 1 1 |
Test 9
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 5 C 1 C 2 O 3 C 1 ... |
| correct output |
|---|
| 1 1 1 1 1 |
| user output |
|---|
| 1 1 1 1 1 |
Test 10
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 5 C 1 C 2 O 3 O 3 ... |
| correct output |
|---|
| 2 1 2 1 1 |
| user output |
|---|
| 1 2 1 2 1 |
Test 11
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 5 C 1 C 2 O 3 O 1 ... |
| correct output |
|---|
| 2 1 2 1 1 |
| user output |
|---|
| 1 2 1 2 1 |
Test 12
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 5 C 1 C 2 O 1 O 3 ... |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 13
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 4 C 1 O 2 C 1 O 3 |
| correct output |
|---|
| 1 1 1 1 |
| user output |
|---|
| 1 1 1 1 |
Test 14
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 4 C 1 O 2 C 2 O 1 |
| correct output |
|---|
| 1 1 1 1 |
| user output |
|---|
| 1 1 1 1 |
Test 15
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 3 C 1 C 2 C 3 |
| correct output |
|---|
| 1 1 1 |
| user output |
|---|
| 1 1 1 |
Test 16
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 3 2 3 O 1 C 2 C 3 |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 17
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 2 2 7 C 1 O 2 O 2 O 2 ... |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| IMPOSSIBLE |
Test 18
Group: 1, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 4 2 5 C 2 O 3 C 1 O 4 ... |
| correct output |
|---|
| 1 1 1 1 1 |
| user output |
|---|
| 1 1 1 1 1 |
Test 19
Group: 2, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100000 100000 C 1 C 2 C 3 C 4 ... |
| correct output |
|---|
| 50000 49999 49998 49997 49996 ... |
| user output |
|---|
| (empty) |
Test 20
Group: 2, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100000 100000 C 1 C 2 C 3 C 4 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 21
Group: 2, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100000 100000 C 1 C 2 C 3 C 4 ... |
| correct output |
|---|
| 20000 20000 20000 20000 20000 ... |
| user output |
|---|
| (empty) |
Test 22
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100 100000 C 1 C 2 C 3 C 4 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 23
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 99 100000 C 1 C 2 C 3 C 4 ... |
| correct output |
|---|
| IMPOSSIBLE |
| user output |
|---|
| (empty) |
Test 24
Group: 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 500 2 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... Truncated |
Test 25
Group: 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 500 2 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 ... |
| user output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 ... Truncated |
Test 26
Group: 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 500 2 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 ... |
| user output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 ... Truncated |
Test 27
Group: 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 500 2 500 C 384 O 62 C 387 C 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... Truncated |
Test 28
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 250 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 29
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 250 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 2 1 3 ... |
| user output |
|---|
| (empty) |
Test 30
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 250 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 3 2 3 3 2 2 2 5 4 2 ... |
| user output |
|---|
| (empty) |
Test 31
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 250 500 C 384 O 62 C 387 C 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 32
Group: 2, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 500 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 33
Group: 2, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 500 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 2 1 3 ... |
| user output |
|---|
| (empty) |
Test 34
Group: 2, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 500 500 C 384 O 62 C 387 O 473 ... |
| correct output |
|---|
| 1 1 1 1 2 1 3 3 3 2 2 2 2 4 5 ... |
| user output |
|---|
| (empty) |
Test 35
Group: 2, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 500 500 C 384 O 62 C 387 C 473 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 36
Group: 3, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 2 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 37
Group: 3, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 2 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 ... |
| user output |
|---|
| (empty) |
Test 38
Group: 3, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 2 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 ... |
| user output |
|---|
| (empty) |
Test 39
Group: 3, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 2 100000 C 89384 O 54062 C 85387 C 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 40
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 50000 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 41
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 50000 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 3 2 1 ... |
| user output |
|---|
| (empty) |
Test 42
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 50000 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 3 2 3 3 3 3 3 3 4 5 ... |
| user output |
|---|
| (empty) |
Test 43
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 50000 100000 C 89384 O 54062 C 85387 C 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 44
Group: 2, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100000 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 45
Group: 2, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100000 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 3 2 1 ... |
| user output |
|---|
| (empty) |
Test 46
Group: 2, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100000 100000 C 89384 O 54062 C 85387 O 53318 ... |
| correct output |
|---|
| 1 1 1 1 2 1 3 3 3 3 3 3 4 5 3 ... |
| user output |
|---|
| (empty) |
Test 47
Group: 2, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 100000 100000 C 89384 O 54062 C 85387 C 53318 ... |
| correct output |
|---|
| 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
