PTA點贊狂魔
7-49 點贊狂魔 (25 分)
微博上有個“點贊”功能,你可以為你喜歡的博文點個贊表示支援。每篇博文都有一些刻畫其特性的標籤,而你點讚的博文的型別,也間接刻畫了你的特性。然而有這麼一種人,他們會通過給自己看到的一切內容點贊來狂刷存在感,這種人就被稱為“點贊狂魔”。他們點讚的標籤非常分散,無法體現出明顯的特性。本題就要求你寫個程式,通過統計每個人點讚的不同標籤的數量,找出前3名點贊狂魔。
輸入格式:
輸入在第一行給出一個正整數N(≤100),是待統計的使用者數。隨後N行,每行列出一位使用者的點贊標籤。格式為“Name K F
1
⋯F
K
”,其中Name是不超過8個英文小寫字母的非空使用者名稱,1≤K≤1000,F
i
(i=1,⋯,K)是特性標籤的編號,我們將所有特性標籤從1到107編號。數字間以空格分隔。
輸出格式:
統計每個人點讚的不同標籤的數量,找出數量最大的前3名,在一行中順序輸出他們的使用者名稱,其間以1個空格分隔,且行末不得有多餘空格。如果有並列,則輸出標籤出現次數平均值最小的那個,題目保證這樣的使用者沒有並列。若不足3人,則用-補齊缺失,例如mike jenny -就表示只有2人。
輸入樣例:
5
bob 11 101 102 103 104 105 106 107 108 108 107 107
peter 8 1 2 3 4 3 2 5 1
chris 12 1 2 3 4 5 6 7 8 9 1 2 3
john 10 8 7 6 5 4 3 2 1 7 5
jack 9 6 7 8 9 10 11 12 13 14
輸出樣例:
jack chris john
首先不知道107是10^7 然後打出執行超時 的桶排
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; struct note{ char name[15]; int cs=0; int sl; }a[105]; int k[10000010]; int cmp(struct note a1,struct note a2){ if(a1.cs ==a2.cs ) return a1.sl <a2.sl ; else return a1.cs >a2.cs ; } int main(){ int n,m; scanf("%d",&n); int t=0,i; while(t<n){ memset(k,0,sizeof(k)); scanf("%s",a[t].name ); scanf("%d",&m); a[t].sl =m; int w; for(i=0;i<m;i++){ scanf("%d",&w); k[w]++; } for(i=1;i<=10000000;i++){ if(k[i]) a[t].cs ++; } t++; } sort(a,a+n,cmp); if(n>=3) printf("%s %s %s",a[0].name ,a[1].name ,a[2].name ); else if(n==2) printf("%s %s -",a[0].name ,a[1].name); else if(n==1) printf("%s - -",a[0].name); else if (n==0) printf("- - -"); return 0; }
使用unique 函式去重;
sort(w,w+m);
a[t].cs =unique(w,w+m)-w;
判斷不同類別的標籤數;
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
struct note{
char name[10];
int cs;
int sl;
}a[105];
int cmp(struct note a1,struct note a2){
if(a1.cs ==a2.cs ) return a1.sl <a2.sl ;
else return a1.cs >a2.cs ;
}
int main(){
int n,m;
scanf("%d",&n);
int t=0,i;
while(t<n){
int w[1000+10];
memset(w,0,sizeof(w));
scanf("%s",a[t].name );
scanf("%d",&m);
a[t].sl =m;
for(i=0;i<m;i++){
scanf("%d",&w[i]);
}
sort(w,w+m);
a[t].cs =unique(w,w+m)-w;
t++;
}
sort(a,a+n,cmp);
if(n>=3) printf("%s %s %s",a[0].name ,a[1].name ,a[2].name );
else if(n==2) printf("%s %s -",a[0].name ,a[1].name);
else if(n==1) printf("%s - -",a[0].name);
else if (n==0) printf("- - -");
return 0;
}
我不會用Set 寫啊
通過 qq.insert(w)
a[t].cs =qq.size() ;
size值即為不同型別標籤數
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<set>
using namespace std;
set<int> qq;
while(t<n){
qq.clear();
scanf("%s",a[t].name );
scanf("%d",&m);
a[t].sl =m;
int w;
for(i=0;i<m;i++){
scanf("%d",&w);
qq.insert(w);
}
a[t].cs =qq.size() ;
t++;
}