2368: Seating Chart

内存限制:128 MB 时间限制:12.000 S
评测方式:文本比较 命题人:
提交:37 解决:10

题目描述

Bilbo's birthday is coming up, and Frodo and Sam are in charge of all the party planning! They

have invited all the hobbits of Middle Earth to the party, and everyone will be sitting in a single

row at an extremely long dining table.

However, due to poor communication, Frodo and Sam have each independently put together a

seating chart for all the hobbits at the dining table. Help Frodo and Sam and out how similar their

seating charts are by counting the total number of distinct pairs of hobbits who appear in different

orders in the two charts.

输入

The input file will contain multiple test cases. Each test case begins with a single line containing

an integer N (1 <=N<=100,000) indicating the number of hobbits. The next two lines represent

Frodo's and Sam's seating charts, respectively. Each seating chart is specified as a single line of

N unique alphabetical strings; the set of strings in each line are guaranteed to be identical. The

end-of-input is denoted by a line containing the number 0.

输出

For each input test case, output a single integer denoting, out of the N  choose 2 distinct pairs of

hobbits, how many pairs appear in different orders in Frodo's and Sam's seating arrangements.

样例输入 复制

3
Frodo Sam Bilbo
Sam Frodo Bilbo
5
A B C D E
B A D E C
0

样例输出 复制

1
3

来源/分类