PAT A1129 Recommendation System (25 分)——set,结构体重载小于号

时间:2022-01-26 04:06:38

Recommendation system predicts the preference that a user would give to an item. Now you are asked to program a very simple recommendation system that rates the user's preference by the number of times that an item has been accessed by this user.

Input Specification:

Each input file contains one test case. For each test case, the first line contains two positive integers: N (≤ 50,000), the total number of queries, and K (≤ 10), the maximum number of recommendations the system must show to the user. Then given in the second line are the indices of items that the user is accessing -- for the sake of simplicity, all the items are indexed from 1 to N. All the numbers in a line are separated by a space.

Output Specification:

For each case, process the queries one by one. Output the recommendations for each query in a line in the format:

query: rec[1] rec[2] ... rec[K]

where query is the item that the user is accessing, and rec[i] (i=1, ... K) is the i-th item that the system recommends to the user. The first K items that have been accessed most frequently are supposed to be recommended in non-increasing order of their frequencies. If there is a tie, the items will be ordered by their indices in increasing order.

Note: there is no output for the first item since it is impossible to give any recommendation at the time. It is guaranteed to have the output for at least one query.

Sample Input:

12 3
3 5 7 5 5 3 2 1 8 3 8 12

Sample Output:

5: 3
7: 3 5
5: 3 5 7
5: 5 3 7
3: 5 3 7
2: 5 3 7
1: 5 3 2
8: 5 3 1
3: 5 3 1
8: 3 5 1
12: 3 5 8
#include <stdio.h>
#include <algorithm>
#include <string.h>
#include <set>
using namespace std;
const int maxn=;
struct node{
int num;
int cnt;
node(int num,int cnt):num(num),cnt(cnt){};
bool operator < (const node& a) const{
return cnt!=a.cnt?cnt>a.cnt:num<a.num;
}
};
set<node> s;
int times[];
int main(){
int n,k;
scanf("%d %d",&n,&k);
for(int i=;i<n;i++){
int tmp;
scanf("%d",&tmp);
if(i!=){
printf("%d:",tmp);
int j=;
for(auto it=s.begin();it!=s.end()&&j<k;it++,j++){
printf(" %d",it->num);
}
printf("\n");
}
if(s.find(node(tmp,times[tmp]))!=s.end()){
s.erase(s.find(node(tmp,times[tmp])));
}
times[tmp]++;
s.insert(node(tmp,times[tmp]));
}
}

注意点:用数组,然后再复制排序,后面3个测试点都会超时,这里要用set。虽然一开始想到的也是要用set,但set只能对数字自动排序,咋办,看了大佬的,原来可以重载<符号,这样set可以自动对结构体排序了,还有就是结构体的构造函数的写法,这样可以直接构造一个node了。之前看的primec++全忘完了。。。

超时代码:虽然写的时候就感觉会超时,但想不到别的办法,只好硬着头皮写了,考试的时候这样也能拿个16分,就酱吧,花不到30分钟还行

#include <stdio.h>
#include <algorithm>
#include <string.h>
using namespace std;
const int maxn=;
struct node{
int num;
int cnt;
}nodes[maxn];
bool cmp(node n1,node n2){
return n1.cnt==n2.cnt?n1.num<n2.num:n1.cnt>n2.cnt;
}
node res[maxn];
int main(){
int n,k;
int count=;
scanf("%d %d",&n,&k);
for(int i=;i<n;i++){
int tmp;
scanf("%d",&tmp);
if(i!=){
printf("%d:",tmp);
memcpy(res,nodes,sizeof(nodes));
sort(res,res+maxn,cmp);
for(int j=;j<k;j++){
if(res[j].cnt!=){
printf(" %d",res[j].num);
}
}
printf("\n");
}
nodes[tmp].num=tmp;
nodes[tmp].cnt++;
}
}

PAT A1129 Recommendation System (25 分)——set,结构体重载小于号的更多相关文章

  1. PAT 甲级 1070 Mooncake &lpar;25 分&rpar;(结构体排序,贪心,简单)

    1070 Mooncake (25 分)   Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autum ...

  2. PAT甲级 1129&period; Recommendation System &lpar;25&rpar;

    1129. Recommendation System (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...

  3. PAT 1129 Recommendation System&lbrack;比较&rsqb;

    1129 Recommendation System(25 分) Recommendation system predicts the preference that a user would giv ...

  4. PTA PAT排名汇总(25 分)

    PAT排名汇总(25 分) 计算机程序设计能力考试(Programming Ability Test,简称PAT)旨在通过统一组织的在线考试及自动评测方法客观地评判考生的算法设计与程序设计实现能力,科 ...

  5. PAT甲级——A1129 Recommendation System【25】

    Recommendation system predicts the preference that a user would give to an item. Now you are asked t ...

  6. PAT 甲级 1032 Sharing &lpar;25 分&rpar;&lpar;结构体模拟链表&comma;结构体的赋值是深拷贝&rpar;

    1032 Sharing (25 分)   To store English words, one method is to use linked lists and store a word let ...

  7. PAT 甲级 1016 Phone Bills &lpar;25 分&rpar; (结构体排序,模拟题,巧妙算时间,坑点太多,debug了好久)

    1016 Phone Bills (25 分)   A long-distance telephone company charges its customers by the following r ...

  8. A1129&period; Recommendation System

    Recommendation system predicts the preference that a user would give to an item. Now you are asked t ...

  9. PAT 1129 Recommendation System

    Recommendation system predicts the preference that a user would give to an item. Now you are asked t ...

随机推荐

  1. 大数据下BI产品如何发挥最大价值

    看到这个题目,你是否总感觉云里雾里?你是否真正懂什么叫“大数据”?商业智能BI和大数据又有着什么千丝万缕的联系?为什么说商业智能BI能在大数据中发挥价值? 大数据,指的是所涉及的数据资料量规模巨大到无 ...

  2. 别老嫌Mac系统难用 这些快捷键你都用过吗

    苹果今年10月发布的全新带把儿(bar)的MacBook,轻薄炫酷的外观大受欢迎,其中当然不乏很多从Windows转到Mac阵营的用户.不少习惯了Windows操作习惯的用户在上手Mac时都会觉得非常 ...

  3. 优化MySchool数据库设计之【巅峰对决】

    优化MySchool数据库设计 之独孤九剑 船舶停靠在港湾是很安全的,但这不是造船的目的 By:北大青鸟五道口原玉明老师 1.学习方法: 01.找一本好书 初始阶段不适合,可以放到第二个阶段,看到知识 ...

  4. Vsftpd服务的搭建

    安装vsftpd服务程序 yum install vsftpd -y Vsftpd的程序与配置文件: 主程序 /usr/sbin/vsftpd 用户禁止登陆列表 /etc/vsftpd/ftpuser ...

  5. &lpar;&ast;medium&rpar;LeetCode 211&period;Add and Search Word - Data structure design

    Design a data structure that supports the following two operations: void addWord(word) bool search(w ...

  6. javascript 笔记——bind 用法小技巧

    $(function(){ //代码阅读能力 function speak(name){ return "Hello " + name; } //此处写代码 //方法一 //重点是 ...

  7. Linq Distinct List 去重复

    //调用 return producePlantlst.Distinct(new item_collection_DistinctBy_item1()).ToList(); //方法 public c ...

  8. Oracle中打印99乘法表的13种方法

    --实现1: select r1 || '*' || r1 || '=' || r1 * r1 A, decode(r2, '', '', r2 || '*' || r1 || '=' || r2 * ...

  9. Oracle删除重复行

    Oracle删除重复行 分类: ORACLE2010-12-12 17:10 423人阅读 评论(0) 收藏 举报 oracletabledeleteintegerinsert.net 查询及删除重复 ...

  10. js左右大小变化

    点左边左边变大.点右边右边大左边小 <style type="text/css"> *{ margin:0px auto; padding:0px; } #wai{ w ...