Submit | All submissions | Best solutions | Back to list |
YODANESS - Yodaness Level |
Yoda is the wisest, and perhaps the most powerful Jedi of his time. Yoda is a mysterious figure and he has many oddities. One of them is that Yoda often changes the order of words in the sentence. For example, one of such phrases is "Or I will help you not." Let's call the yodaness level of any statement the number of pairs of words that changed their order, as to the order in which they were supposed to go in a normal statement. Write a program that determines the yodaness level of different statement of Yoda.
Input
The first line of input contains the number t - the number of tests. Next comes the description of t tests. Each test consists of three rows. The first line of the test contains an integer n - number of words in the statement. The next line contains n words separated by spaces - the statement as Yoda says it. The next line is n words separated by spaces - the same statement as it should be said normally. All the words in the statement are different and consist of small Latin letters.
Constraints
1 ≤ t ≤ 10
1 ≤ n ≤ 30000
the length of each word does not exceed 20 characters
Output
For each test print the yodaness level of the statement.
Example
Input: 2 6 in the force strong you are you are strong in the force 6 or i will help you not or i will not help you Output: 11 2
Added by: | Spooky |
Date: | 2010-03-09 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS OBJC PERL6 SQLITE VB.NET |
Resource: | Advancement Spring 2010, http://sevolymp.uuuq.com/ |
hide comments
|
||||||||
2016-06-18 09:30:32
BIT 0.22 MERGE_SORT_MODIFIED 0.22 :P |
||||||||
2016-06-11 18:26:01
Easy one AC in one go solve INVCNT before you solve this |
||||||||
2016-04-29 13:14:45 siddharth
I have solved INVCNT and i am using the same algo for this problem still it is giving me TLE I am using STL+mergesort. Please help Edit solved using maps+mergesort Last edit: 2016-04-29 14:22:52 |
||||||||
2016-01-21 14:07:23 Safayet Islam Anonno
Thanks Rajat for your clarification. It helped. |
||||||||
2015-10-20 22:48:29 Advitiya
STL+mergesort :'D AC |
||||||||
2015-08-07 12:34:16 Mayank Garg
Just basic STL !! :D |
||||||||
2015-07-24 22:15:43 BALMUKUND SINHA
100th question Last edit: 2015-07-24 22:15:54 |
||||||||
2015-07-24 14:53:28 PRIBAN91
The problem statement should be bit more descriptive. Otherwise a good problem. Thanks Rajat. |
||||||||
2015-06-25 12:34:20
maps + INVCNT :D |
||||||||
2015-04-26 06:53:57 GAURAV CHANDEL
Easy if you have solved INVCNT .. Good problem |