美文网首页
CodeFoeces-961A

CodeFoeces-961A

作者: ss5smi | 来源:发表于2018-04-22 17:12 被阅读0次

    题目

    原题链接:A. Tetris

    题意

    在宽n列的区域内,顺序给出m个方块及出现位置,问最多可以消去几行(规则同俄罗斯方块)。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    int main() {
        int n,m,t,s[1010]={0};
        cin>>n>>m;
        for(int i=0; i<m; i++) {
            cin>>t;
            s[t]++;
        }
        sort(s+1,s+n+1);
        cout<<s[1];
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:CodeFoeces-961A

          本文链接:https://www.haomeiwen.com/subject/mxynhftx.html