团体程序设计天梯赛-练习集 L2 (数据结构)

这篇博客介绍了三个不同场景下的数据结构应用:列车调度利用了集合的lower_bound和erase操作;悄悄关注通过无序集合和映射实现社交平台的关注统计;特殊堆栈结合栈和有序向量实现多种操作。文章深入浅出地展示了如何在实际问题中灵活运用数据结构。
摘要由CSDN通过智能技术生成

L2-014 列车调度 (25 分)

  • set.lower_bound返回迭代器,如果等于end说明没找到
  • set.erase()中参数是迭代器
#include <iostream>
#include <set>
using namespace std;

int main() {
    set<int> se;
    int n;
    cin >> n;
    for (int i = 0; i < n; ++ i) {
        int x;
        cin >> x;
        auto it = se.lower_bound(x);
        if (it != se.end()) {
            se.erase(it);
        }
        se.insert(x);
    }
    cout << se.size();
}

L2-019 悄悄关注 (25 分)

  • map默认按key值从小到大升序
#include <iostream>
#include <unordered_set>
#include <map>
using namespace std;

int main() {
    int n;
    cin >> n;
    unordered_set<string> se;
    for (int i = 0; i < n; ++ i) {
        string x;
        cin >> x;
        se.insert(x);
    }
    map<string, int> ma;
    int m;
    cin >> m;
    int sum = 0;
    for (int i = 0; i < m; ++ i) {
        string x;
        int y;
        cin >> x >> y;
        ma[x] = y;
        sum += y;
    }
    double avg = sum * 1.0 / m;
    bool ok = false;
    for (auto x : ma) {
        if (x.second > avg && se.find(x.first) == se.end()) {
            ok = true;
            cout << x.first<< endl;
        }
    }
    if (!ok) {
        cout << "Bing Mei You";
    }
}

L3-002 特殊堆栈 (30 分)

#include <iostream>
#include <vector>
#include <stack>
using namespace std;

int main() {
    int n;
    cin >> n;
    stack<int> stk;
    vector<int> ve;
    while (n -- ) {
        string s;
        cin >> s;
        bool ok = true;
        if (s == "Push") {
            int key;
            cin >> key;
            stk.push(key);
            ve.insert(lower_bound(ve.begin(), ve.end(), key), key);
        } else if (s == "Pop") {
            if (stk.size()) {
                int now = stk.top();
                stk.pop();
                cout << now << endl;
                ve.erase(lower_bound(ve.begin(), ve.end(), now));
            } else {
                ok = false;
            }
        } else {
            if (stk.size()) {
                int n = stk.size();
                if (n % 2) {
                    cout << ve[(n + 1) / 2 - 1] << endl;
                } else {
                    cout << ve[n / 2 - 1] << endl;
                }
            } else {
                ok = false;
            }
        }
        if (!ok) {
            cout << "Invalid" << endl;
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值