CCF小白刷题之路---201909-4 推荐系统(C/C++ 100分)

简介: CCF小白刷题之路---201909-4 推荐系统(C/C++ 100分)

一、题目描述
image.png
image.png
image.png
image.png
image.png
image.png
二、代码实现

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

//商品
struct Good{
    int type;
    int id;
    int score;
};

//删除的商品
struct Del_Good{
    int type;
    int id;
};

set<Good> good;
set<Del_Good> del_good;

//运算符重载<,便于商品排序
bool operator < (const Good &g1,const Good &g2)
{
    if(g1.score!=g2.score) return g1.score > g2.score;
    else
    {
        if(g1.type==g2.type) return g1.id < g2.id;
        else return g1.type < g2.type;
    }
}

//运算符重载<,便于商品排序
bool operator < (const Del_Good &g1,const Del_Good &g2)
{
    if(g1.type==g2.type) return g1.id < g2.id;
    else return g1.type < g2.type;
}

int main()
{
    int m,n;
    cin>>m>>n;
    //初始化商品
    for(int i=0;i<n;i++)
    {
        Good temp;
        cin>>temp.id>>temp.score;
        for(int j=0;j<m;j++)
        {
            temp.type = j;
            good.insert(temp);
        }
    }
    int op_num;
    cin>>op_num;
    while(op_num--)
    {
        int op;
        cin>>op;
        //操作1---添加商品
        if(op==1)
        {
            Good temp;
            cin>>temp.type>>temp.id>>temp.score;
            good.insert(temp);
        }
        //操作2---删除商品,统一用结构体存储
        else if(op==2)
        {
            Del_Good temp;
            cin>>temp.type>>temp.id;
            del_good.insert(temp);
        }
        else
        {
            int k,type_k[m];
            cin>>k;
            for(int i=0;i<m;i++)
            {
                cin>>type_k[i];
            }
            vector<int> output[m];
            //判断每一个商品是否被删除
            for(set<Good>::iterator it = good.begin();k>0 && it!=good.end();)
            {
                if(type_k[(*it).type] > 0)
                {
                    Del_Good temp;
                    temp.type = (*it).type;
                    temp.id = (*it).id;
                    //find找不到返回的是end()
                    if(del_good.find(temp)!=del_good.end())
                    {
                        //这里注意it++要写在括号里面
                        //erase之后it所在位置为null
                        //写在外面的话就it++就定位不到下一个了
                        good.erase(it++);
                    }
                    else
                    {
                        type_k[(*it).type]--;
                        k--;
                        output[(*it).type].push_back((*it).id);
                        it++;
                    }
                }
                else it++;
            }
            for(int i=0;i<m;i++)
            {
                if(output[i].size()>0)
                {
                    for(int j=0;j<output[i].size();j++)
                    {
                        cout<<output[i][j]<<" ";
                    }
                    cout<<endl;
                }
                else cout<<-1<<endl;
            }
        }
    }
}
相关文章
|
算法 C语言 C++
从C语言的使用转换到C++(上篇)——刷题、竞赛篇
从C语言的使用转换到C++(上篇)——刷题、竞赛篇
270 0
|
存储 C++
【五一创作】C++刷题 【入门4】数组
【五一创作】C++刷题 【入门4】数组
108 0
|
5月前
|
算法 C++
【数据结构与算法】:关于时间复杂度与空间复杂度的计算(C/C++篇)——含Leetcode刷题-2
【数据结构与算法】:关于时间复杂度与空间复杂度的计算(C/C++篇)——含Leetcode刷题
|
5月前
|
算法 C++
【数据结构与算法】:关于时间复杂度与空间复杂度的计算(C/C++篇)——含Leetcode刷题-1
【数据结构与算法】:关于时间复杂度与空间复杂度的计算(C/C++篇)——含Leetcode刷题
|
6月前
|
C语言 C++
【C语言/C++】牛客网刷题训练-12
【C语言/C++】牛客网刷题训练-12
|
6月前
|
存储 自然语言处理 C++
刷题用到的非常有用的函数c++(持续更新)
刷题用到的非常有用的函数c++(持续更新)
84 1
|
存储 C语言 C++
【C/C++刷题——leetcode】查找字符串中最大的子串
【C/C++刷题——leetcode】查找字符串中最大的子串
302 0
|
6月前
|
C++
C++刷题ACM输入数组
C++刷题ACM输入数组
69 0
|
6月前
|
C++
第十三届蓝桥杯B组C++(试题C:刷题统计)
第十三届蓝桥杯B组C++(试题C:刷题统计)
50 0
|
算法 程序员 C语言
从C语言的使用转换到C++(下篇)——刷题、竞赛篇
我们上篇文章讲述了C++中的一些基础语法和常用函数(从C语言的使用转换到C++(上篇)——刷题、竞赛篇),我们本篇文章讲述C++STL的使用。
210 0