- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
java解法
- 解题思路
- 输入数据:首先输入两个整数 a 和 b,分别表示数组 arrA 和 arrB 的大小。接着输入两个字符串,分别是数组 arrA 和 arrB 的元素,元素之间用空格隔开。
任务目标:统计数组 arrB 中的元素在数组 arrA 中出现的总次数。即数组 arrB 中每个元素在 arrA 中匹配到的次数总和。
思路分析:
使用一个 频率表(Map) 来记录数组 arrA 中每个元素出现的次数。
遍历数组 arrB,查找数组 arrA 中每个元素出现的次数,并累加到结果中。
代码步骤:
通过 countFreq 方法统计数组 arrA 中每个元素的出现频率,返回一个 Map。
通过 calcMatches 方法遍历数组 arrB,并使用频率表查找每个元素在 arrA 中的出现次数,最终返回匹配次数。
时间复杂度:假设数组 arrA 和 arrB 的长度分别为 a 和 b,那么时间复杂度是 O(a + b),因为分别遍历了两次数组。
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = Integer.parseInt(sc.nextLine());
int b = Integer.parseInt(sc.nextLine());
String[] arrA = sc.nextLine().split(" ");
String[] arrB = sc.nextLine().split(" ");
Map<String, Integer> freqMap = countFreq(arrA);
int result = calcMatches(freqMap, arrB);
System.out.println(result);
}
private static Map<String, Integer> countFreq(String[] arr) {
Map<String, Integer> freqMap = new HashMap<>();
for (String s : arr) {
freqMap.put(s, freqMap.getOrDefault(s, 0) + 1);
}
return freqMap;
}
private static int calcMatches(Map<String, Integer> freqMap, String[] arr) {
int total = 0;
for (String s : arr) {
total += freqMap.getOrDefault(s, 0);
}
return total;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
评论记录:
回复评论: