小易有一个古老的游戏机,上面有着经典的游戏俄罗斯方块。因为它比较古老,所以规则和一般的俄罗斯方块不同。
荧幕上一共有 n 列,每次都会有一个 1 x 1 的方块随机落下,在同一列中,后落下的方块会叠在先前的方块之上,当一整行方块都被占满时,这一行会被消去,并得到1分。
有一天,小易又开了一局游戏,当玩到第 m 个方块落下时他觉得太无聊就关掉了,小易希望你告诉他这局游戏他获得的分数。
第一行两个数 n, m
第二行 m 个数,c1, c2, ... , cm , ci 表示第 i 个方块落在第几列
其中 1 <= n, m <= 1000, 1 <= ci <= n
小易这局游戏获得的分数
3 9 1 1 2 2 2 3 1 2 3
2
from collections import Counter n, m = map(int, input().split()[:2]) c = list(map(int, input().split()[:m])) res = Counter(c).most_common() print(0 if len(res) < n else res[-1][1])
import sys n,m=list(map(int,sys.stdin.readline().split())) arr=list(map(int,sys.stdin.readline().split())) if len(set(arr))<n: print(0) else: num=[] for i in arr: num.append(arr.count(i)) print(min(num))
""" 统计每一列方块个数,最小值即为最终得分(包括0) """ from collections import Counter import sys if __name__ == "__main__": # sys.stdin = open('input.txt', 'r') n, m = list(map(int, input().strip().split())) c = list(map(int, input().strip().split())) v = Counter(c).values() ans = 0 if len(v) == n: ans = min(v) print(ans)
利用count和sort列表操作函数 n = int(input("input n:"))
m = int(input("input m:"))
c = []
while m > 0 :
c.append(int(input("input c[]:")))
m-=1
a = range(n)
d = []
for i in a :
d.append(c.count(a[i]+1))
d.sort()
print(d[0])