CSES - NOI 2019 - Results
Submission details
Task:Thieves and Prisons
Sender:Roope Salmi
Submission time:2019-03-06 14:55:53 +0200
Language:C++
Status:READY
Result:8
Feedback
groupverdictscore
#1ACCEPTED8
#20
#30
#40
#50
Test results
testverdicttimegroup
#10.03 s2, 4, 5details
#20.01 s2, 4, 5details
#30.01 s2, 4, 5details
#40.02 s2, 4, 5details
#50.02 s2, 4, 5details
#60.03 s4, 5details
#70.02 s4, 5details
#80.04 s4, 5details
#9ACCEPTED0.01 s1, 3, 4, 5details
#10ACCEPTED0.03 s1, 3, 4, 5details
#11ACCEPTED0.02 s1, 3, 4, 5details
#12ACCEPTED0.01 s1, 3, 4, 5details
#13ACCEPTED0.01 s1, 3, 4, 5details
#14ACCEPTED0.01 s1, 3, 4, 5details
#15ACCEPTED0.03 s1, 3, 4, 5details
#16ACCEPTED0.01 s1, 3, 4, 5details
#17ACCEPTED0.02 s1, 2, 3, 4, 5details
#18ACCEPTED0.02 s1, 3, 4, 5details
#190.02 s2, 5details
#200.02 s2, 5details
#210.02 s2, 5details
#220.01 s5details
#230.03 s5details
#240.34 s3, 4, 5details
#250.34 s3, 4, 5details
#260.38 s3, 4, 5details
#270.56 s3, 4, 5details
#280.03 s4, 5details
#290.01 s4, 5details
#300.02 s4, 5details
#310.04 s4, 5details
#320.02 s2, 4, 5details
#330.02 s2, 4, 5details
#340.01 s2, 4, 5details
#350.01 s2, 4, 5details
#360.03 s3, 5details
#370.05 s3, 5details
#380.04 s3, 5details
#390.03 s3, 5details
#400.02 s5details
#410.01 s5details
#420.02 s5details
#430.02 s5details
#440.02 s2, 5details
#450.01 s2, 5details
#460.02 s2, 5details
#470.02 s2, 5details

Code

#include <bits/stdc++.h>
using namespace std;
int main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  int n, k, m;
  cin >> n >> k >> m;
  assert(k == 2);
  char et[m];
  int ea[m];
  for (int i = 0; i < m; ++i) {
    cin >> ws;
    cin >> et[i] >> ea[i];
    ea[i]--;
  }
  int sol = -1;
  for (int p = 0; p < (1<<m); ++p) {
    vector<int> pr[2];
    bool f = 1;
    bool ip[n];
    for (int i = 0; i < n; ++i) ip[i] = 0;
    for (int i = 0; i < m; ++i) {
      if (et[i] == 'C') {
        if (ip[ea[i]]) {f=0;break;}
        ip[ea[i]] = 1;
        pr[(p>>i)&1].push_back(ea[i]);
      } else {
        if (ip[ea[i]]) {f=0;break;}
        if (pr[(p>>i)&1].size() == 0) {f=0;break;}
        for (int j : pr[(p>>i)&1]) ip[j] = 0;
        pr[(p>>i)&1].clear();
      }
    }
    if (f) {
      sol = p; break;
    }
  }
  if (sol != -1) {
    for (int i = 0; i < m; ++i) {
      cout << ((sol>>i)&1)+1 << " ";
    }
    cout << endl;
  } else cout << "IMPOSSIBLE\n";
}

Test details

Test 1

Group: 2, 4, 5

Verdict:

input
1 1 1
C 1

correct output

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 2

Group: 2, 4, 5

Verdict:

input
1 1 1
O 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 3

Group: 2, 4, 5

Verdict:

input
1 1 2
C 1
C 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 4

Group: 2, 4, 5

Verdict:

input
1 1 2
C 1
O 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 5

Group: 2, 4, 5

Verdict:

input
1 1 2
O 1
C 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 6

Group: 4, 5

Verdict:

input
2 1 2
C 1
C 2

correct output
1 1 

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 7

Group: 4, 5

Verdict:

input
2 1 2
C 1
O 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 8

Group: 4, 5

Verdict:

input
2 1 2
C 1
O 2

correct output
1 1 

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

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
2 1 2 1 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
2 1 2 1 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:

input
100000 100000 100000
C 1
C 2
C 3
C 4
...

correct output
50000 49999 49998 49997 49996 ...

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 20

Group: 2, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 21

Group: 2, 5

Verdict:

input
100000 100000 100000
C 1
C 2
C 3
C 4
...

correct output
20000 20000 20000 20000 20000 ...

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 22

Group: 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 23

Group: 5

Verdict:

input
100000 99 100000
C 1
C 2
C 3
C 4
...

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 24

Group: 3, 4, 5

Verdict:

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
IMPOSSIBLE

Test 25

Group: 3, 4, 5

Verdict:

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
IMPOSSIBLE

Test 26

Group: 3, 4, 5

Verdict:

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
IMPOSSIBLE

Test 27

Group: 3, 4, 5

Verdict:

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
IMPOSSIBLE

Test 28

Group: 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 29

Group: 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 30

Group: 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 31

Group: 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 32

Group: 2, 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 33

Group: 2, 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 34

Group: 2, 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 35

Group: 2, 4, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 36

Group: 3, 5

Verdict:

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
IMPOSSIBLE

Test 37

Group: 3, 5

Verdict:

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
IMPOSSIBLE

Test 38

Group: 3, 5

Verdict:

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
IMPOSSIBLE

Test 39

Group: 3, 5

Verdict:

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
IMPOSSIBLE

Test 40

Group: 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 41

Group: 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 42

Group: 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 43

Group: 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 44

Group: 2, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 45

Group: 2, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 46

Group: 2, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.

Test 47

Group: 2, 5

Verdict:

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)

Error:
code: input/code.cpp:8: int main(): Assertion `k == 2' failed.