CF840A.Leha and Function

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Leha like all kinds of strange things. Recently he liked the function F(n,k)F(n,k) . Consider all possible kk -element subsets of the set [1,2,...,n][1,2,...,n] . For subset find minimal element in it. F(n,k)F(n,k) — mathematical expectation of the minimal element among all kk -element subsets.

But only function does not interest him. He wants to do interesting things with it. Mom brought him two arrays AA and BB , each consists of mm integers. For all i,ji,j such that 1<=i,j<=m1<=i,j<=m the condition Ai>=BjA_{i}>=B_{j} holds. Help Leha rearrange the numbers in the array AA so that the sum is maximally possible, where AA' is already rearranged array.

输入格式

First line of input data contains single integer mm ( 1<=m<=21051<=m<=2·10^{5} ) — length of arrays AA and BB .

Next line contains mm integers a1,a2,...,ama_{1},a_{2},...,a_{m} ( 1<=ai<=1091<=a_{i}<=10^{9} ) — array AA .

Next line contains mm integers b1,b2,...,bmb_{1},b_{2},...,b_{m} ( 1<=bi<=1091<=b_{i}<=10^{9} ) — array BB .

输出格式

Output mm integers a1,a2,...,ama'_{1},a'_{2},...,a'_{m} — array AA' which is permutation of the array AA .

输入输出样例

  • 输入#1

    5
    7 3 5 3 4
    2 1 3 2 3
    

    输出#1

    4 7 3 5 3
    
  • 输入#2

    7
    4 6 5 8 8 2 6
    2 1 2 2 1 1 2
    

    输出#2

    2 6 4 5 8 8 6
    
首页