CSES - NOI 2019 - Results
Submission details
Task:Thieves and Prisons
Sender:Elvar Árni Bjarnason
Submission time:2019-03-06 14:53:57 +0200
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
#50
Test results
testverdicttimegroup
#10.04 s2, 4, 5details
#20.05 s2, 4, 5details
#30.05 s2, 4, 5details
#40.05 s2, 4, 5details
#50.05 s2, 4, 5details
#60.04 s4, 5details
#70.04 s4, 5details
#80.04 s4, 5details
#90.04 s1, 3, 4, 5details
#100.04 s1, 3, 4, 5details
#110.04 s1, 3, 4, 5details
#120.05 s1, 3, 4, 5details
#130.04 s1, 3, 4, 5details
#140.04 s1, 3, 4, 5details
#150.05 s1, 3, 4, 5details
#160.05 s1, 3, 4, 5details
#170.04 s1, 2, 3, 4, 5details
#180.05 s1, 3, 4, 5details
#190.44 s2, 5details
#200.44 s2, 5details
#210.44 s2, 5details
#220.38 s5details
#230.39 s5details
#240.05 s3, 4, 5details
#250.05 s3, 4, 5details
#260.04 s3, 4, 5details
#270.05 s3, 4, 5details
#280.05 s4, 5details
#290.04 s4, 5details
#300.04 s4, 5details
#310.04 s4, 5details
#320.04 s2, 4, 5details
#330.06 s2, 4, 5details
#340.05 s2, 4, 5details
#350.04 s2, 4, 5details
#360.38 s3, 5details
#370.39 s3, 5details
#380.39 s3, 5details
#390.39 s3, 5details
#400.41 s5details
#410.40 s5details
#420.42 s5details
#430.43 s5details
#440.44 s2, 5details
#450.43 s2, 5details
#460.43 s2, 5details
#470.43 s2, 5details

Code

n, k, m = map(int, input().split())
prisons = {}
for i in range(int(k)):
    prisons[i+1] = 0
theives = [i+1 for i in range(int(n))]
event = []
res = []

for i in range(m):
    x, y = input().split()
    event.append((x,y))


for i in event:
    if i[0] == 'O':
        if prisons[1] > prisons[2]:
            res.append('1')
            prisons[1] = 0
        else:
            res.append('2')
            prisons[2] = 0
    elif i[0] == 'C':
        if prisons[1] > prisons[2]:
            res.append('2')
            prisons[2] += 1
        else:
            res.append('1')
            prisons[1] += 1
print(prisons)
[print(i, end=' ') for i in res]

Test details

Test 1

Group: 2, 4, 5

Verdict:

input
1 1 1
C 1

correct output

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 23, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 2

Group: 2, 4, 5

Verdict:

input
1 1 1
O 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 16, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 3

Group: 2, 4, 5

Verdict:

input
1 1 2
C 1
C 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 23, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 4

Group: 2, 4, 5

Verdict:

input
1 1 2
C 1
O 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 23, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 5

Group: 2, 4, 5

Verdict:

input
1 1 2
O 1
C 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 16, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 6

Group: 4, 5

Verdict:

input
2 1 2
C 1
C 2

correct output
1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 23, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 7

Group: 4, 5

Verdict:

input
2 1 2
C 1
O 1

correct output
IMPOSSIBLE

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 23, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 8

Group: 4, 5

Verdict:

input
2 1 2
C 1
O 2

correct output
1 1 

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 23, in <module>
    if prisons[1] > prisons[2]:
KeyError: 2

Test 9

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 3
C 1
...

correct output
1 1 1 1 1 

user output
{1: 2, 2: 1}
1 2 2 2 1 

Test 10

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 3
O 3
...

correct output
2 1 2 1 1 

user output
{1: 1, 2: 0}
1 2 2 1 1 

Test 11

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 3
O 1
...

correct output
2 1 2 1 1 

user output
{1: 1, 2: 0}
1 2 2 1 1 

Test 12

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 1
O 3
...

correct output
IMPOSSIBLE

user output
{1: 1, 2: 0}
1 2 2 1 1 

Test 13

Group: 1, 3, 4, 5

Verdict:

input
3 2 4
C 1
O 2
C 1
O 3

correct output
1 1 1 1 

user output
{1: 0, 2: 0}
1 1 1 1 

Test 14

Group: 1, 3, 4, 5

Verdict:

input
3 2 4
C 1
O 2
C 2
O 1

correct output
1 1 1 1 

user output
{1: 0, 2: 0}
1 1 1 1 

Test 15

Group: 1, 3, 4, 5

Verdict:

input
3 2 3
C 1
C 2
C 3

correct output
1 1 1 

user output
{1: 2, 2: 1}
1 2 1 

Test 16

Group: 1, 3, 4, 5

Verdict:

input
3 2 3
O 1
C 2
C 3

correct output
IMPOSSIBLE

user output
{1: 1, 2: 1}
2 1 2 

Test 17

Group: 1, 2, 3, 4, 5

Verdict:

input
2 2 7
C 1
O 2
O 2
O 2
...

correct output
IMPOSSIBLE

user output
{1: 0, 2: 0}
1 1 2 2 2 1 1 

Test 18

Group: 1, 3, 4, 5

Verdict:

input
4 2 5
C 2
O 3
C 1
O 4
...

correct output
1 1 1 1 1 

user output
{1: 1, 2: 0}
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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 37500, 2: 37499, 3: 0, 4: ...

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
{1: 20000, 2: 20000, 3: 0, 4: ...

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
{1: 24950, 2: 24950, 3: 0, 4: ...

Test 23

Group: 5

Verdict:

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

correct output
IMPOSSIBLE

user output
{1: 24950, 2: 24950, 3: 0, 4: ...

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
{1: 1, 2: 1}
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

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
{1: 1, 2: 0}
1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 ...

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
{1: 1, 2: 0}
1 1 1 1 1 2 1 1 1 2 2 2 2 1 2 ...

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
{1: 2, 2: 1}
1 1 1 2 1 2 1 2 1 2 1 2 1 2 1 ...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 2, 2: 1, 3: 0, 4: 0, 5: 0,...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 2, 2: 1, 3: 0, 4: 0, 5: 0,...

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
{1: 1, 2: 0}
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

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
{1: 1, 2: 0}
1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 ...

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
{1: 1, 2: 0}
1 1 1 1 1 2 1 1 1 2 2 2 2 1 2 ...

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
{1: 1, 2: 0}
1 1 1 2 1 2 1 2 1 2 1 2 1 2 1 ...

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
{1: 1, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 1, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 1, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 1, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 0, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 1, 2: 0, 3: 0, 4: 0, 5: 0,...

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
{1: 1, 2: 0, 3: 0, 4: 0, 5: 0,...