蓝桥杯-日志统计

    科技2022-07-11  114

    标题:日志统计 小明维护着一个程序员论坛。现在他收集了一份"点赞"日志,日志共有N行。其中每一行的格式是: ts id 表示在ts时刻编号id的帖子收到一个"赞"。

    现在小明想统计有哪些帖子曾经是"热帖"。如果一个帖子曾在任意一个长度为D的时间段内收到不少于K个赞,小明就认为这个帖子曾是"热帖"。

    具体来说,如果存在某个时刻T满足该帖在[T, T+D)这段时间内(注意是左闭右开区间)收到不少于K个赞,该帖就曾是"热帖"。

    给定日志,请你帮助小明统计出所有曾是"热帖"的帖子编号。

    【输入格式】 第一行包含三个整数N、D和K。 以下N行每行一条日志,包含两个整数ts和id。

    对于50%的数据,1 <= K <= N <= 1000 对于100%的数据,1 <= K <= N <= 100000 0 <= ts <= 100000 0 <= id <= 100000

    【输出格式】 按从小到大的顺序输出热帖id。每个id一行。 【输入样例】 7 10 2 0 1 0 10 10 10 10 1 9 1 100 3 100 3

    【输出样例】 1 3 思路: 对于上面的示例,先将ts分别按从小到大排序,j当做‘哨兵’,i是从最初开始循环,j位置的ts减去i位置的ts要小于D,将i到j中间的td点赞用cnt来保存,若发现点赞次数大于K的用answer来保存下来。 代码:

    #include<iostream> #include<map> #include<vector> #include<algorithm> #include<set> using namespace std; struct R{ int ts,td; }; bool cmp(R r1,R r2) { return r1.ts<r2.ts; } int main() { int N,D,K; cin>>N>>D>>K; vector<R>records(N);//存日志 map<int,int>cnt;//记录id出现的次数 for(int i=0;i<N;++i) { cin>>records[i].ts>>records[i].td; } sort(records.begin(),records.end(),cmp); int j=0; set<int>answer;//记录结果 for(int i=0;i<N;++i) { while(j<N&&records[j].ts-records[i].ts<D) { cnt[records[j].td]++; if(cnt[records[j].td]>=K) { answer.insert(records[j].td); } j++; } cnt[records[i].td]--; } for(set<int>::iterator it = answer.begin();it!=answer.end();++it) { cout<<*it<<endl; } }
    Processed: 0.009, SQL: 8