Task: | Ruudukko |
Sender: | hoodarm |
Submission time: | 2022-11-08 22:34:57 +0200 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.02 s | 1, 2, 3 | details |
#2 | RUNTIME ERROR | 0.02 s | 1, 2, 3 | details |
#3 | RUNTIME ERROR | 0.02 s | 1, 2, 3 | details |
#4 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
#5 | RUNTIME ERROR | 0.04 s | 2, 3 | details |
#6 | RUNTIME ERROR | 0.04 s | 2, 3 | details |
#7 | TIME LIMIT EXCEEDED | -- | 3 | details |
#8 | TIME LIMIT EXCEEDED | -- | 3 | details |
#9 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
# Python3 program for Number of paths # from one vertex to another vertex # in a Directed Acyclic Graph from collections import deque MAXN = 1 # to make graph v = [[] for i in range(MAXN)] # function to add edge in graph def add_edge(a, b, fre): # there is path from a to b. v[a].append(b) fre[b] += 1 # function to make topological sorting def topological_sorting(fre, n): q = deque() # insert all vertices which # don't have any parent. for i in range(n): if (not fre[i]): q.append(i) l = [] # using kahn's algorithm # for topological sorting while (len(q) > 0): u = q.popleft() #q.pop() # insert front element of queue to vector l.append(u) # go through all it's childs for i in range(len(v[u])): fre[v[u][i]] -= 1 # whenever the frequency is zero then add # this vertex to queue. if (not fre[v[u][i]]): q.append(v[u][i]) return l # Function that returns the number of paths def numberofPaths(source, destination, n, fre): # make topological sorting s = topological_sorting(fre, n) # to store required answer. dp = [0]*n # answer from destination # to destination is 1. dp[destination] = 1 # traverse in reverse order for i in range(len(s) - 1,-1,-1): for j in range(len(v[s[i]])): dp[s[i]] += dp[v[s[i]][j]] return dp noOfVertices = int(input()) actualNoOfVertices = noOfVertices*noOfVertices fre = [0]*actualNoOfVertices counter = 1 index = 0 Grid={} while (counter<=noOfVertices): rowNo = counter numbers = list(map(int, input().split())) coloumnNo = 1 for coloumnNo in range(1,noOfVertices+1): Grid[index] = [numbers[coloumnNo-1],(rowNo,coloumnNo)] index=index+1 counter=counter+1 for index,value in Grid.items(): for index2,otherValue in Grid.items(): if ((value[1][0]==otherValue[1][0] or value[1][1]==otherValue[1][1]) and otherValue[0]<value[0]): add_edge(index,index2,fre) fre2 = [] for i in fre: fre2.append(i) noOfPaths = 0 for i in range(0,noOfVertices*noOfVertices): fre.clear() for t in fre2: fre.append (t) some = numberofPaths(0,i,actualNoOfVertices,fre) for n in some: noOfPaths = noOfPaths + n print(noOfPaths%(10000000007))
Test details
Test 1
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
3 1 1 1 1 1 1 1 1 1 |
correct output |
---|
9 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 100, in <module>...
Test 2
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
3 1 2 3 6 5 4 7 8 9 |
correct output |
---|
135 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 88, in <module> a...
Test 3
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
3 7 8 1 4 5 4 3 9 6 |
correct output |
---|
57 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 88, in <module> a...
Test 4
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
10000 |
user output |
---|
(empty) |
Test 5
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
100 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
187458477 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 88, in <module> a...
Test 6
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
100 2995 8734 1018 2513 7971 5063 ... |
correct output |
---|
964692694 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 88, in <module> a...
Test 7
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
1000000 |
user output |
---|
(empty) |
Test 8
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
229147081 |
user output |
---|
(empty) |
Test 9
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 520283 805991 492643 75254 527... |
correct output |
---|
951147313 |
user output |
---|
(empty) |