CCF-CSP 201312-1 出现次数最多的数 (python)
程序员文章站
2022-05-19 13:14:07
...
问题描述
问题描述
给定n个正整数,找出它们中出现次数最多的数。如果这样的数有多个,请输出其中最小的一个。
输入格式
输入的第一行只有一个正整数n(1 ≤ n ≤ 1000),表示数字的个数。
输入的第二行有n个整数s1, s2, …, sn (1 ≤ si ≤ 10000, 1 ≤ i ≤ n)。相邻的数用空格分隔。
输出格式
输出这n个次数中出现次数最多的数。如果这样的数有多个,输出其中最小的一个。
样例输入
6
10 1 10 20 30 20
样例输出
10
思路
遍历+计数+维护当前最大出现次数。
解法
#input
n = eval(input())
#print(n)
line = input().split()
numbers = [eval(a) for a in line]
#print(numbers)
#new a dictionary, save current max count and the number
dct = {}
maxCount = 0
maxCountN = 1111#random number
for number in numbers:
if number in dct:
dct[number] += 1
else:
dct[number] = 1
if dct[number] > maxCount or (dct[number] == maxCount and maxCountN > number):
maxCount = dct[number]
maxCountN = number
print(maxCountN)
复杂度O(n)
推荐阅读
-
Python cookbook(数据结构与算法)找出序列中出现次数最多的元素算法示例
-
python怎么判断字符串中出现次数最多的字母?
-
【python cookbook】找出序列中出现次数最多的元素
-
CSP201312-1:出现次数最多的数
-
Python实现计算字符串中出现次数最多的字符示例
-
CCF CSP 201312-1 出现次数最多的数 (Python)
-
python ccf题解 201312-1 出现次数最多的数(100分)
-
CCF 201312-1 出现次数最多的数(Python100分)
-
CCF201312-1 出现次数最多的数 (python语言)
-
python ccf题解 201312-1 出现次数最多的数