A1483.[COCI-2012_2013-contest3]#5 PROCESOR

提高+/省选-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Mirko-wan has just received the results of his history exam. One of the problems was putting famous historical battles into chronological order. The correct order was:

  1. Blockade of Naboo
  2. Battle of Geonosis
  3. Battle of Yavin
  4. Battle of Hoth
  5. Battle of Endor Mirko-wan has studied (relatively) hard for the exam, so he remembered the exact years of all battles, except for the Blockade of Naboo. He couldn't remember anything about it, so he randomly placed it last instead of first, obtaining the order:
  6. Battle of Geonosis
  7. Battle of Yavin
  8. Battle of Hoth
  9. Battle of Endor
  10. Blockade of Naboo Since Mirko-wan's order doesn't match the correct solution at any index, Mirko-wan's score on that problem was – to his disappointment – 0 out of 5 points, even though he knew the correct order of four out of five battles!
    This opens the question of fair scoring of an ordering problem. The example given above suggests that scoring by counting the number of items in the correct absolute position isn't fair. Is there a better way?
    One possibility is finding the longest subsequence (not necessarily contiguous) of correctly ordered items. This isn't the best solution either: if an item is displaced by just one position from the correct order, the score that it awards drops to zero, even though it was almost correctly ordered.
    Mirko-wan has thus suggested (using the MAWT – Might As Well Try a Mind Trick approach) the following scoring method to his history teacher. For every two items, the student will receive 1 point if the two items are in mutually correct order. In other words, the number of points is the number of item pairs that the student has correctly ordered. The maximum number of points is then, of course, the total number of pairs, which equals N * (N - 1) / 2, where N is the total number of entries.

输入格式

The first line of input contains the positive integer N (2 ≤ N ≤ 2500), the number of items. The items are distinct words consisting of 3 to 15 lowercase English letters.
The second line of input contains the N items, space-separated, listed in the correct order.
The third line of input contains the N items, space-separated, listed in Mirko-wan's order.

输出格式

The first and only line of output must contain, with no spaces, the following: the number of points that Mirko-wan would earn using his scoring method, a / (forward slash) character, and the maximum possible number of points for that problem (again assuming Mirko-wan's scoring method). (This is the usual notation found on a typical graded exam.)

输入输出样例

  • 输入#1

    3
    alpha beta gamma
    alpha gamma beta

    输出#1

    2/3
  • 输入#2

    5
    naboo geonosis yavin hoth endor
    geonosis yavin hoth endor naboo

    输出#2

    6/10

说明/提示

Clarification of the first example: Mirko-wan has received points for the pairs (alpha, beta) and
(alpha, gamma).

首页