CF814B.An express train to reveries

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Sengoku still remembers the mysterious "colourful meteoroids" she discovered with Lala-chan when they were little. In particular, one of the nights impressed her deeply, giving her the illusion that all her fancies would be realized.

On that night, Sengoku constructed a permutation p1,p2,...,pnp_{1},p_{2},...,p_{n} of integers from 11 to nn inclusive, with each integer representing a colour, wishing for the colours to see in the coming meteor outburst. Two incredible outbursts then arrived, each with nn meteorids, colours of which being integer sequences a1,a2,...,ana_{1},a_{2},...,a_{n} and b1,b2,...,bnb_{1},b_{2},...,b_{n} respectively. Meteoroids' colours were also between 11 and nn inclusive, and the two sequences were not identical, that is, at least one ii ( 1<=i<=n1<=i<=n ) exists, such that aibia_{i}≠b_{i} holds.

Well, she almost had it all — each of the sequences aa and bb matched exactly n1n-1 elements in Sengoku's permutation. In other words, there is exactly one ii ( 1<=i<=n1<=i<=n ) such that aipia_{i}≠p_{i} , and exactly one jj ( 1<=j<=n1<=j<=n ) such that bjpjb_{j}≠p_{j} .

For now, Sengoku is able to recover the actual colour sequences aa and bb through astronomical records, but her wishes have been long forgotten. You are to reconstruct any possible permutation Sengoku could have had on that night.

输入格式

The first line of input contains a positive integer nn ( 2<=n<=10002<=n<=1000 ) — the length of Sengoku's permutation, being the length of both meteor outbursts at the same time.

The second line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=n1<=a_{i}<=n ) — the sequence of colours in the first meteor outburst.

The third line contains nn space-separated integers b1,b2,...,bnb_{1},b_{2},...,b_{n} ( 1<=bi<=n1<=b_{i}<=n ) — the sequence of colours in the second meteor outburst. At least one ii ( 1<=i<=n1<=i<=n ) exists, such that aibia_{i}≠b_{i} holds.

输出格式

Output nn space-separated integers p1,p2,...,pnp_{1},p_{2},...,p_{n} , denoting a possible permutation Sengoku could have had. If there are more than one possible answer, output any one of them.

Input guarantees that such permutation exists.

输入输出样例

  • 输入#1

    5
    1 2 3 4 3
    1 2 5 4 5
    

    输出#1

    1 2 5 4 3
    
  • 输入#2

    5
    4 4 2 3 1
    5 4 5 3 1
    

    输出#2

    5 4 2 3 1
    
  • 输入#3

    4
    1 1 3 4
    1 4 3 4
    

    输出#3

    1 2 3 4
    

说明/提示

In the first sample, both 1,2,5,4,31,2,5,4,3 and 1,2,3,4,51,2,3,4,5 are acceptable outputs.

In the second sample, 5,4,2,3,15,4,2,3,1 is the only permutation to satisfy the constraints.

首页