题解 | #又放学辣(简单)#

又放学辣(简单)

https://ac.nowcoder.com/acm/problem/261229


N,M,K=map(int,input().split())
t=map(int,input().split())
b = Counter(t)

for i in range(1, M+1):
    t = [b[j] for j in range(1, M+1)]
    t.pop(i-1)
    if sum(t)<K:
        print(-1,end=" ")
    else:
        for times in range(K):
            t[t.index(max(t))]-=1
        print(max(t),end=" ")

全部评论

相关推荐

想去夏威夷的小哥哥在度假:5和6才是重点
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务