牛客--2019网易--俄罗斯方块

题目描述:
小易有一个古老的游戏机,上面有着经典的游戏俄罗斯方块。因为它比较古老,所以规则和一般的俄罗斯方块不同。
荧幕上一共有 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
题意:
题目描述
题解
记录下最小值
代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;

const int maxn = 10000 + 5;
int a[maxn];

int main(){
    int n,m,x;
    while(scanf("%d%d",&n,&m)!=EOF){
        int minn = maxn;
        memset(a,0,sizeof(a));
        for(int i = 1; i <= m; i ++){
            scanf("%d",&x);
            a[x] ++;
        }
        for(int i = 1; i <= n; i ++){
            minn = min(minn,a[i]);
        }
        printf("%d\n",minn);
    }
    return 0;
}

发布了228 篇原创文章 · 获赞 1 · 访问量 13万+

猜你喜欢

转载自blog.csdn.net/Ypopstar/article/details/105151375