A11131 | Leha and Function
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Leha like all kinds of strange things. Recently he liked the function $F(n,k)$ . Consider all possible $k$ -element subsets of the set $[1,2,...,n]$ . For subset find minimal element in it. $F(n,k)$ — mathematical expectation of the minimal element among all $k$ -element subsets.
But only function does not interest him. He wants to do interesting things with it. Mom brought him two arrays $A$ and $B$ , each consists of $m$ integers. For all $i,j$ such that $1<=i,j<=m$ the condition $A_{i}>=B_{j}$ holds. Help Leha rearrange the numbers in the array $A$ so that the sum  is maximally possible, where $A'$ is already rearranged array.
But only function does not interest him. He wants to do interesting things with it. Mom brought him two arrays $A$ and $B$ , each consists of $m$ integers. For all $i,j$ such that $1<=i,j<=m$ the condition $A_{i}>=B_{j}$ holds. Help Leha rearrange the numbers in the array $A$ so that the sum  is maximally possible, where $A'$ is already rearranged array.
输入格式
First line of input data contains single integer $m$ ( $1<=m<=2·10^{5}$ ) — length of arrays $A$ and $B$ .
Next line contains $m$ integers $a_{1},a_{2},...,a_{m}$ ( $1<=a_{i}<=10^{9}$ ) — array $A$ .
Next line contains $m$ integers $b_{1},b_{2},...,b_{m}$ ( $1<=b_{i}<=10^{9}$ ) — array $B$ .
Next line contains $m$ integers $a_{1},a_{2},...,a_{m}$ ( $1<=a_{i}<=10^{9}$ ) — array $A$ .
Next line contains $m$ integers $b_{1},b_{2},...,b_{m}$ ( $1<=b_{i}<=10^{9}$ ) — array $B$ .
输出格式
Output $m$ integers $a'_{1},a'_{2},...,a'_{m}$ — array $A'$ which is permutation of the array $A$ .
输入输出样例
输入 #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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted