• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            oyjpArt ACM/ICPC算法程序設計空間

            // I am new in programming, welcome to my blog
            I am oyjpart(alpc12, 四城)
            posts - 224, comments - 694, trackbacks - 0, articles - 6

            RookAttack

            Posted on 2007-04-16 20:47 oyjpart 閱讀(971) 評論(0)  編輯 收藏 引用 所屬分類: ACM/ICPC或其他比賽

            Problem Statement

                 You have been given a rows-by-cols chessboard, with a list of squares cut out. The list of cutouts will be given in a String[] cutouts. Each element of cutouts is a comma-delimited lists of coords. Each coord has the form (quotes for clarity) "r c". If coord "r c" appears in an element of cutouts, it means that the square at row r column c (0-based) has been removed from the chessboard. This problem will involve placing rooks on a chessboard, so that they cannot attack each other. For a rook to attack a target piece, it must share the same row or column as the target. Your method will return an int that will be the maximum number of rooks that can be placed on the chessboard, such that no pair of rooks can attack each other. Rooks cannot be placed on cut out squares. The cut out squares do not affect where the rooks can attack.

            Constraints

            - rows will be between 1 and 300 inclusive.
            - cols will be between 1 and 300 inclusive.
            - cutouts will contain between 0 and 50 elements inclusive.
            - Each element of cutouts will contain between 3 and 50 characters inclusive.
            - Each element of cutouts will be a comma delimited list of coords. Each coord will be of the form "r c", where
            • r and c are integers, with no extra leading zeros,
            • r is between 0 and rows-1 inclusive,
            • and c is between 0 and cols-1 inclusive.
            - Each element of cutouts will not contain leading or trailing spaces.

            Examples

            1)
                
            2
            2
            {"0 0","0 1","1 1","1 0"}
            Returns: 0
            2)
                
            3
            3
            {"0 0","1 0","1 1","2 0","2 1","2 2"}
            Returns: 2

            看到這個題目有什么想法?
            8皇后問題相信是大家入門搜索或其他算法的經典教材了 如果被砍掉部分格子呢?
            看到row和col分別是300的時候相信想搜索的朋友們心里可能要嘀咕一下了

            如果這樣分析一下:
            由于在放置rook的時候要求這一行還有這一列一定只有這一個元素(注意是rook 不是queen 不要求斜行)
            也就是說一個rook可以唯一的決定一行和一列
            那么。。
            這個rook似乎可以看成是某一行和某一列的一條邊
            如果把rows作為一個集合 cols作為一個集合 把不是cut out的點作為row和col的連接
            于是就轉化成了:二分圖匹配
            按照最短路的增廣分析 時間復雜度不會超過o(n^3) 滿足題目要求
            比如一個3*3的棋盤 被cut out掉了(0,0) (1,2) (2,2) 3個格子
            row集合 0,1,2
            col集合 0,1,2
            可連接的邊為(0, 1), (0,2), (1, 0), (1,1), (2,0),(2,1)
            執行最大匹配 將會得到如下結果
            (0,2) (1,0), (2,1)
            滿足題意

            综合网日日天干夜夜久久| 久久91这里精品国产2020| 一级A毛片免费观看久久精品| 久久国产午夜精品一区二区三区| 久久午夜无码鲁丝片午夜精品| 思思久久99热只有频精品66| 久久国产欧美日韩精品| 国产免费福利体检区久久| 18禁黄久久久AAA片| 久久精品成人免费看| 青青草原综合久久大伊人| 久久久久国产精品| 中文字幕无码免费久久| 国产免费久久精品99久久| 久久久久AV综合网成人| 伊人久久大香线蕉综合5g | 久久国产香蕉视频| 中文精品久久久久人妻不卡| 国产巨作麻豆欧美亚洲综合久久| 久久天天躁狠狠躁夜夜avapp| 99久久精品无码一区二区毛片| 久久成人小视频| 久久强奷乱码老熟女网站| 国产成人精品久久综合| 99麻豆久久久国产精品免费| 狠狠综合久久综合88亚洲| 色婷婷综合久久久久中文字幕| 欧美精品一区二区精品久久 | 久久精品国产亚洲综合色| 99精品久久精品一区二区| 四虎亚洲国产成人久久精品| 青青草原1769久久免费播放| 99久久99这里只有免费的精品| 午夜精品久久久久久久| 伊人久久大香线蕉AV一区二区| 国产精品成人精品久久久| 99久久精品免费看国产一区二区三区 | 99久久精品免费看国产免费| 亚洲国产精品久久久久| 好久久免费视频高清| AA级片免费看视频久久|