CF1239E.Turtle

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Kolya has a turtle and a field of size 2×n2 \times n . The field rows are numbered from 11 to 22 from top to bottom, while the columns are numbered from 11 to nn from left to right.

Suppose in each cell of the field there is a lettuce leaf. The energy value of lettuce leaf in row ii and column jj is equal to ai,ja_{i,j} . The turtle is initially in the top left cell and wants to reach the bottom right cell. The turtle can only move right and down and among all possible ways it will choose a way, maximizing the total energy value of lettuce leaves (in case there are several such paths, it will choose any of them).

Kolya is afraid, that if turtle will eat too much lettuce, it can be bad for its health. So he wants to reorder lettuce leaves in the field, so that the energetic cost of leaves eaten by turtle will be minimized.

输入格式

The first line contains an integer nn ( 2n252 \le n \le 25 ) — the length of the field.

The second line contains nn integers a1,ia_{1, i} ( 0a1,i500000 \le a_{1, i} \le 50\,000 ), the energetic cost of lettuce leaves in the first row of the field.

The third line contains nn integers a2,ia_{2, i} ( 0a2,i500000 \le a_{2, i} \le 50\,000 ), the energetic cost of lettuce leaves in the second row of the field.

输出格式

Print two lines with nn integers in each — the optimal reordering of lettuce from the input data.

In case there are several optimal ways to reorder lettuce, print any of them.

输入输出样例

  • 输入#1

    2
    1 4
    2 3
    

    输出#1

    1 3 
    4 2 
    
  • 输入#2

    3
    0 0 0
    0 0 0
    

    输出#2

    0 0 0 
    0 0 0 
    
  • 输入#3

    3
    1 0 1
    0 0 0
    

    输出#3

    0 0 1
    0 1 0
    

说明/提示

In the first example, after reordering, the turtle will eat lettuce with total energetic cost 1+4+2=71+4+2 = 7 .

In the second example, the turtle will eat lettuce with energetic cost equal 00 .

In the third example, after reordering, the turtle will eat lettuce with total energetic cost equal 11 .

首页