码迷,mamicode.com
首页 > 编程语言 > 详细

模板 - 算法基础 - 离线询问

时间:2019-11-24 23:57:28      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:sort   inpu   amp   return   printf   out   class   put   pre   

struct Query {
    int id, pos, ans;
} q[200005];

bool cmp1(const Query &q1, const Query &q2) {
    return q1.pos < q2.pos;
}

bool cmp2(const Query &q1, const Query &q2) {
    return q1.id < q2.id;
}

void InputQuery(int n) {
    for(int i = 1; i <= n; ++i) {
        scanf("%d", &q[i].pos);
        q[i].id = i;
    }
    sort(q + 1, q + 1 + n, cmp1);
}

void OutputQuery(int n) {
    sort(q + 1, q + 1 + n, cmp2);
//    for(int i = 1; i <= n; ++i)
//        printf("%d%c", q[i].ans, " \n"[i == n]);
    for(int i = 1; i <= n; ++i)
        printf("%d\n", q[i].ans);
}

模板 - 算法基础 - 离线询问

标签:sort   inpu   amp   return   printf   out   class   put   pre   

原文地址:https://www.cnblogs.com/KisekiPurin2019/p/11925193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!