CSES - Datatähti 2022 loppu - Results
Submission details
Task:Sokkelo
Sender:okkokko
Submission time:2022-01-22 16:37:59 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.06 s1, 2details
#20.07 s1, 2details
#30.06 s1, 2details
#40.12 s2details
#50.12 s2details
#60.12 s2details
#70.06 s1, 2details
#80.11 s2details
#90.12 s2details
#100.06 s1, 2details
#110.11 s2details
#120.07 s1, 2details
#130.10 s2details
#140.06 s1, 2details
#150.10 s2details
#16ACCEPTED0.05 s2details
#170.08 s2details

Code

from itertools import product
def I():
return map(int, input().split())
def main():
n, m = I() # y,x
sokStr = [input() for _ in range(n)]
def findPerson(person):
for i in range(n):
a = sokStr[i].find(person)
if a != -1:
return a, i
Ax, Ay = findPerson("A")
Bx, By = findPerson("B")
Apath = []
Bpath = []
sokkelo = [[1 if i == "#" else 0 for i in s] for s in sokStr]
# wall is 1, A is 2, B is 3
def mark(x, y, side):
if not sokkelo[y][x]:
sokkelo[y][x] = side
(Apath if side == 2 else Bpath).append((y, x))
for a in (1, -1):
if 1 <= x + a < m - 1: # jokainen reunaruutu on seinää
mark(x + a, y, side)
if 1 <= y + a < n - 1:
mark(x, y + a, side)
def markA(x, y):
if not sokkelo[y][x]:
sokkelo[y][x] = 2
Apath.append((y, x))
for a in (1, -1):
if 1 <= x + a < m - 1: # jokainen reunaruutu on seinää
markA(x + a, y)
if 1 <= y + a < n - 1:
mark(x, y + a)
# try:
markA(Ax, Ay) # Virhe on täällä, ei ole IndexError
# except:
# print(0)
# return
if sokkelo[By][Bx] == 2:
print(1)
return
mark(Bx, By, 3)
def manhattan(a, b):
return abs(a[0] - b[0]) + abs(a[1] - b[1])
print(min(manhattan(a, b) for a, b in product(Apath, Bpath)))
if __name__ == "__main__":
main()

Test details

Test 1

Group: 1, 2

Verdict:

input
20 20
####################
#A.................#
#..................#
#..................#
...

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 2

Group: 1, 2

Verdict:

input
20 20
####################
#A.................#
#..................#
#..................#
...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 3

Group: 1, 2

Verdict:

input
20 20
####################
#A.................#
#..................#
#..................#
...

correct output
9

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 4

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 5

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 6

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
335

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 7

Group: 1, 2

Verdict:

input
20 20
####################
#####.##############
###.....############
##.......###########
...

correct output
10

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 8

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
436

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 9

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 10

Group: 1, 2

Verdict:

input
20 20
####################
#B................##
#################.##
#################.##
...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 11

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 12

Group: 1, 2

Verdict:

input
20 20
####################
##########A#########
##########.#########
##########.#########
...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 13

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 14

Group: 1, 2

Verdict:

input
20 20
####################
##########A#########
##########.#########
##########.#########
...

correct output
12

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 15

Group: 2

Verdict:

input
1000 1000
##############################...

correct output
502

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...

Test 16

Group: 2

Verdict: ACCEPTED

input
3 1000
##############################...

correct output
1

user output
1

Test 17

Group: 2

Verdict:

input
1000 3
###
#A#
#.#
#.#
...

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 59, in <module>
    main()...