F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Fleet of the Eternal Throne

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1352    Accepted Submission(s): 594


Problem Description
> The Eternal Fleet was built many centuries ago before the time of Valkorion by an unknown race on the planet of Iokath. The fate of the Fleet's builders is unknown but their legacy would live on. Its first known action was in the annihilation of all life in Wild Space. It spread across Wild Space and conquered almost every inhabited world within the region, including Zakuul. They were finally defeated by a mysterious vessel known as the Gravestone, a massive alien warship that countered the Eternal Fleet's might. Outfitted with specialized weapons designed to take out multiple targets at once, the Gravestone destroyed whole sections of the fleet with a single shot. The Eternal Fleet was finally defeated over Zakuul, where it was deactivated and hidden away. The Gravestone landed in the swamps of Zakuul, where the crew scuttled it and hid it away.
>
> ¡ª Wookieepedia

The major defeat of the Eternal Fleet is the connected defensive network. Though being effective in defensing a large fleet, it finally led to a chain-reaction and was destroyed by the Gravestone. Therefore, when the next generation of Eternal Fleet is built, you are asked to check the risk of the chain reaction.

The battleships of the Eternal Fleet are placed on a 2D plane of $n$ rows. Each row is an array of battleships. The type of a battleship is denoted by an English lowercase alphabet. In other words, each row can be treated as a string. Below lists a possible configuration of the Eternal Fleet.


aa
bbbaaa
abbaababa
abba


If in the $x$-th row and the $y$-th row, there exists a consecutive segment of battleships that looks identical in both rows (i.e., a common substring of the $x$-th row and $y$-th row), at the same time the substring is a prefix of any other row (can be the $x$-th or the $y$-th row), the Eternal Fleet will have a risk of causing chain reaction.

Given a query ($x$, $y$), you should find the longest substring that have a risk of causing chain reaction.
 

Input
The first line of the input contains an integer $T$, denoting the number of test cases.

For each test cases, the first line contains integer $n$ ($n\le10^5$).

There are $n$ lines following, each has a string consisting of lower case letters denoting the battleships in the row. The total length of the strings will not exceed $10^5$.

And an integer $m$ ($1\le m\le100$) is following, representing the number of queries.

For each of the following $m$ lines, there are two integers $x, y$, denoting the query.
 

Output
You should output the answers for the queries, one integer per line.
 

Sample Input
1 3 aaa baaa caaa 2 2 3 1 2
 

Sample Output
3 3
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-24 03:14:13, Gzip enabled