微博上有个“点赞”功能,你可以为你喜欢的博文点个赞表示支持。每篇博文都有一些刻画其特性的标签,而你点赞的博文的类型,也间接刻画了你的特性。本题就要求你写个程序,通过统计一个人点赞的纪录,分析这个人的特性。
输入在第一行给出一个正整数N(≤1000),是该用户点赞的博文数量。随后N行,每行给出一篇被其点赞的博文的特性描述,格式为“K F1?FK”,其中1≤K≤10,Fi(i=1,?,K)是特性标签的编号,我们将所有特性标签从1到1000编号。数字间以空格分隔。
统计所有被点赞的博文中最常出现的那个特性标签,在一行中输出它的编号和出现次数,数字间隔1个空格。如果有并列,则输出编号最大的那个。
4
3 889 233 2
5 100 3 233 2 73
4 3 73 889 2
2 233 123
233 3
运行超时:当版本还是HashMap时我的第一反应是将Scanner改为BufferedReader,可是无效。后来仔细想了想之前也是遇到这个情况,用数组而非HashMap,因为数组的访问时间复杂度比HashMap低
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader bu = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(bu.readLine());
int[] tag = new int[1001];
for (int i = 0; i < n; i++) {
String[] k = bu.readLine().split(" ");
for (int j = 1; j < k.length; j++) {
int temp = Integer.parseInt(k[j]);
tag[temp]++;
}
}
int id = 0;
int max = tag[0];
for (int i = 1; i <= 1000; i++) {
if (max <= tag[i]) {
max = tag[i];
id = i;
}
}
System.out.print(id + " " + max);
}
}
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt();
Map<Integer,Integer> tagFrequency = new HashMap<>();
for (int i = 0; i < N; i++) {
int K = scanner.nextInt(); // 博文的特性标签数量
for (int j = 0; j < K; j++) {
int tag = scanner.nextInt();
tagFrequency.put(tag, tagFrequency.getOrDefault(tag, 0) + 1);
}
}
int maxFrequencyTag = 0;
int maxFrequency = 0;
for (Map.Entry<Integer, Integer> entry : tagFrequency.entrySet()) {
int tag = entry.getKey();
int frequency = entry.getValue();
if (frequency > maxFrequency || (frequency == maxFrequency && tag > maxFrequencyTag)) {
maxFrequencyTag = tag;
maxFrequency = frequency;
}
}
System.out.println(maxFrequencyTag + " " + maxFrequency);
}
}