CF1239E.Turtle
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Kolya has a turtle and a field of size 2×n . The field rows are numbered from 1 to 2 from top to bottom, while the columns are numbered from 1 to n from left to right.
Suppose in each cell of the field there is a lettuce leaf. The energy value of lettuce leaf in row i and column j is equal to ai,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 n ( 2≤n≤25 ) — the length of the field.
The second line contains n integers a1,i ( 0≤a1,i≤50000 ), the energetic cost of lettuce leaves in the first row of the field.
The third line contains n integers a2,i ( 0≤a2,i≤50000 ), the energetic cost of lettuce leaves in the second row of the field.
输出格式
Print two lines with n 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=7 .
In the second example, the turtle will eat lettuce with energetic cost equal 0 .
In the third example, after reordering, the turtle will eat lettuce with total energetic cost equal 1 .