CF392D.Three Arrays

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are three arrays aa , bb and cc . Each of them consists of nn integers. SmallY wants to find three integers uu , vv , ww (0<=u,v,w<=n)(0<=u,v,w<=n) such that the following condition holds: each number that appears in the union of aa , bb and cc , appears either in the first uu elements of aa , or in the first vv elements of bb , or in the first ww elements of cc . Of course, SmallY doesn't want to have huge numbers uu , vv and ww , so she wants sum u+v+wu+v+w to be as small as possible.

Please, help her to find the minimal possible sum of u+v+wu+v+w .

输入格式

The first line contains a single integer nn (1<=n<=105)(1<=n<=10^{5}) . The second line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} — array aa . The third line contains the description of array bb in the same format. The fourth line contains the description of array cc in the same format. The following constraint holds: 1<=ai,bi,ci<=1091<=a_{i},b_{i},c_{i}<=10^{9} .

输出格式

Print a single integer — the minimum possible sum of u+v+wu+v+w .

输入输出样例

  • 输入#1

    3
    1 1 101
    1 2 1
    3 2 1
    

    输出#1

    5
  • 输入#2

    5
    1 1 2 2 3
    2 2 4 3 3
    3 3 1 1 1
    

    输出#2

    5

说明/提示

In the first example you should choose u=3,v=0,w=2u=3,v=0,w=2 .

In the second example you should choose u=1,v=3,w=1u=1,v=3,w=1 .

首页