CodeForces 840A - Leha and Function | Codeforces Round #429 (Div. 1)

/*
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]);
}

  

posted @ 2017-08-20 14:47  nicetomeetu  阅读(339)  评论(0编辑  收藏  举报