/*
CodeForces 840A - Leha and Function [ 贪心 ]  |  Codeforces Round #429 (Div. 1)
A越大,B越小,越好
*/
#include <bits/stdc++.h>
using namespace std;
const int N = 2e5+5;
int a[N], b[N], c[N], n;
int aa[N], bb[N];
bool cmp1(int x, int y) {
    return a[x] > a[y];
}
bool cmp2(int x, int y) {
    return b[x] < b[y];
}
int main()
{
    scanf("%d", &n);
    for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
    for (int i = 1; i <= n; i++) scanf("%d", &b[i]);
    for (int i = 1; i <= n; i++) aa[i] = bb[i] = i;
    sort(aa+1, aa+n+1, cmp1);
    sort(bb+1, bb+n+1, cmp2);
    for (int i = 1; i <= n; i++) c[bb[i]] = a[aa[i]];
    for (int i = 1; i < n; i++) printf("%d ", c[i]);
    printf("%d\n", c[n]);
}

  

相关文章:

  • 2021-12-20
  • 2022-12-23
  • 2021-07-20
  • 2021-08-02
  • 2021-07-13
  • 2021-06-12
  • 2021-10-19
  • 2021-10-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-12
  • 2021-12-13
  • 2021-09-22
  • 2021-08-08
  • 2021-09-23
相关资源
相似解决方案