306702: CF1239E. Turtle

Memory Limit:512 MB Time Limit:5 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Turtle

题意翻译

一只乌龟从$2 \times n$的棋盘的左上角走到右下角,只能往下或往右,需要给出一种方案来分配$2n$个数字使得乌龟走过的路径上的数之和的最大值最小。

题目描述

Kolya has a turtle and a field of size $ 2 \times 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 $ a_{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 $ n $ ( $ 2 \le n \le 25 $ ) — the length of the field. The second line contains $ n $ integers $ a_{1, i} $ ( $ 0 \le a_{1, i} \le 50\,000 $ ), the energetic cost of lettuce leaves in the first row of the field. The third line contains $ n $ integers $ a_{2, i} $ ( $ 0 \le a_{2, i} \le 50\,000 $ ), 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 $ .

Input

题意翻译

一只乌龟从$2 \times n$的棋盘的左上角走到右下角,只能往下或往右,需要给出一种方案来分配$2n$个数字使得乌龟走过的路径上的数之和的最大值最小。

加入题单

算法标签: