Task: | Company Queries II |
Sender: | Farah |
Submission time: | 2024-10-13 21:05:22 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | TIME LIMIT EXCEEDED |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.02 s | details |
#2 | ACCEPTED | 0.02 s | details |
#3 | ACCEPTED | 0.02 s | details |
#4 | ACCEPTED | 0.02 s | details |
#5 | ACCEPTED | 0.02 s | details |
#6 | TIME LIMIT EXCEEDED | -- | details |
#7 | TIME LIMIT EXCEEDED | -- | details |
#8 | TIME LIMIT EXCEEDED | -- | details |
#9 | TIME LIMIT EXCEEDED | -- | details |
#10 | TIME LIMIT EXCEEDED | -- | details |
#11 | ACCEPTED | 0.02 s | details |
#12 | TIME LIMIT EXCEEDED | -- | details |
Code
import syssys.setrecursionlimit(300000)def preprocess_lca(n, boss):LOG = 18 # log base 2 of 2 * 10^5 is around 18up = [[-1] * LOG for _ in range(n + 1)]depth = [0] * (n + 1)adj = [[] for _ in range(n + 1)]# Building the tree structure based on boss relationshipsfor i in range(2, n + 1):adj[boss[i - 2]].append(i)# DFS to initialize depth and up tablesdef dfs(v, parent):up[v][0] = parentfor j in range(1, LOG):if up[v][j - 1] != -1:up[v][j] = up[up[v][j - 1]][j - 1]for u in adj[v]:if u != parent:depth[u] = depth[v] + 1dfs(u, v)# Start DFS from node 1 (the root or general director)dfs(1, -1)return up, depthdef lca(a, b, up, depth):# Ensure a is deeper or at the same level as bif depth[a] < depth[b]:a, b = b, aLOG = len(up[0])# Bring a and b to the same depthfor j in range(LOG - 1, -1, -1):if depth[a] - (1 << j) >= depth[b]:a = up[a][j]if a == b:return a# Binary lifting to find LCAfor j in range(LOG - 1, -1, -1):if up[a][j] != up[b][j]:a = up[a][j]b = up[b][j]# Return the parent of both when they meetreturn up[a][0]def main():# Reading inputn, q = map(int, input().split())boss = list(map(int, input().split()))# Preprocess the tree to get the LCA helper structuresup, depth = preprocess_lca(n, boss)# Process each query and output the resultfor _ in range(q):a, b = map(int, input().split())print(lca(a, b, up, depth))if __name__ == "__main__":main()
Test details
Test 1
Verdict: ACCEPTED
input |
---|
10 10 1 2 3 4 5 6 7 8 9 6 9 8 10 10 3 ... |
correct output |
---|
6 8 3 1 8 ... |
user output |
---|
6 8 3 1 8 ... |
Test 2
Verdict: ACCEPTED
input |
---|
10 10 1 1 1 1 1 1 1 1 1 1 7 3 4 4 1 ... |
correct output |
---|
1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 ... |
Test 3
Verdict: ACCEPTED
input |
---|
10 10 1 1 1 1 2 3 4 4 1 1 8 2 7 8 3 ... |
correct output |
---|
1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 ... |
Test 4
Verdict: ACCEPTED
input |
---|
10 10 1 1 3 1 2 2 5 3 9 7 2 7 6 3 9 ... |
correct output |
---|
2 2 3 1 1 ... |
user output |
---|
2 2 3 1 1 ... |
Test 5
Verdict: ACCEPTED
input |
---|
10 10 1 2 3 2 5 3 2 2 4 6 1 1 3 1 9 ... |
correct output |
---|
1 1 1 2 2 ... |
user output |
---|
1 1 1 2 2 ... |
Test 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
74862 8750 16237 72298 58111 ... |
user output |
---|
(empty) |
Test 7
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 200000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
1 1 1 1 1 ... |
user output |
---|
(empty) |
Test 8
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 200000 1 2 1 2 3 2 1 6 3 1 10 12 13 4... |
correct output |
---|
1 2 2 2 1 ... |
user output |
---|
(empty) |
Test 9
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
2796 633 633 151 2690 ... |
user output |
---|
(empty) |
Test 10
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
correct output |
---|
365 73 103 365 216 ... |
user output |
---|
(empty) |
Test 11
Verdict: ACCEPTED
input |
---|
2 4 1 1 1 1 2 2 1 ... |
correct output |
---|
1 1 1 2 |
user output |
---|
1 1 1 2 |
Test 12
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 200000 1 1 2 3 4 5 6 7 8 9 10 11 12 1... |
correct output |
---|
27468 6353 27468 6353 6353 ... |
user output |
---|
(empty) |