• Best Grass


    Bessie is planning her day of munching tender spring grass and is gazing
    out upon the pasture which Farmer John has so lovingly partitioned into a
    grid with R (1 <= R <= 100) rows and C (1 <= C <= 100) columns. She wishes
    to count the number of grass clumps in the pasture.
    
    Each grass clump is shown on a map as either a single '#' symbol or perhaps
    two '#' symbols side-by-side (but not on a diagonal). Given a map of the
    pasture, tell Bessie how many grass clumps there are.
    
    By way of example, consider this pasture map where R=5 and C=6:
    
    .#....
    ..#...
    ..#..#
    ...##.
    .#....
    
    This pasture has a total of 5 clumps: one on the first row, one that spans
    the second and third row in column 2, one by itself on the third row, one
    that spans columns 4 and 5 in row 4, and one more in row 5.
    * Line 1: Two space-separated integers: R and C
    
    * Lines 2..R+1: Line i+1 describes row i of the field with C
            characters, each of which is a '#' or a '.'
    * Line 1: A single integer that is the number of grass clumps Bessie
            can munch
    5 6
    .#....
    ..#...
    ..#..#
    ...##.
    .#....
    想的太多,做的太少。
  • 相关阅读:
    Infopath Notify 弹出提示信息
    window.showModalDialog 返回值
    【转】获得正文内容中的所有img标签的图片路径
    Json Datable Convert
    Sharepoint 列表 附件 小功能
    Surgey 权限更改
    SQL 触发器用于IP记录转换
    Caml语句 查询分配给当前用户及当前组
    jquery 1.3.2 auto referenced when new web application in VSTS2010(DEV10)
    TFS diff/merge configuration
  • 原文地址:https://www.cnblogs.com/pealicx/p/6115674.html
Copyright © 2020-2023  润新知