【hihoCoder 1494】一面砖墙

一面砖墙

思路

用map统计每一层墙上的所有缝隙到左边的距离。(距离,缝隙出现次数)键值对使用map来存放。缝隙越多,则划线时穿过的砖块越少。

资料

STL关联式容器之map和multimap

代码

#include <iostream>
#include <set>
#include <map>
using namespace std;
#define LOCAL 0


map<int,int> m;
int main(){ 
//是否重定向  
#if LOCAL
    freopen ("datain.txt","r",stdin);
    freopen ("dataout.txt","w",stdout);
#endif

    int n,c;
    cin >> n;
    for(int i = 0;i < n; i++){
        cin >> c;
        int tmp,sum = 0;
        for(int j = 0; j < c; j++){
            cin >> tmp;
            if(j == c-1){//最后不统计,但是必须先输入 
                break;
            }
            sum += tmp;
            //不存在key时,value的初始值未知 
//          if(m.find(sum) != m.end()){
                m[sum]++;               
//          }
//          else{
//              m[sum] = 1;
//          }                   
        }       
    }
    int max = 0;
    map<int,int>::iterator p;
    for(p = m.begin();p != m.end();++p){
        if(p->second > max){
            max = p->second;
        }
    }
    cout << n-max << endl;
    return 0;
}

猜你喜欢

转载自blog.csdn.net/Side__/article/details/80931509
今日推荐