結果

問題 No.179 塗り分け
ユーザー ducktailducktail
提出日時 2018-08-01 16:27:38
言語 Haskell
(9.8.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 703 bytes
コンパイル時間 7,715 ms
コンパイル使用メモリ 171,392 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-07-23 14:51:12
合計ジャッジ時間 14,606 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,812 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 29 ms
8,064 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 TLE -
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 558 ms
8,064 KB
testcase_21 AC 30 ms
7,808 KB
testcase_22 AC 38 ms
7,936 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 24 ms
7,680 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 10 ms
6,944 KB
testcase_27 AC 104 ms
7,936 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 184 ms
7,936 KB
testcase_30 AC 78 ms
8,064 KB
testcase_31 AC 249 ms
8,064 KB
testcase_32 AC 60 ms
8,064 KB
testcase_33 AC 348 ms
7,936 KB
testcase_34 AC 45 ms
7,936 KB
testcase_35 AC 432 ms
7,936 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 1 ms
6,940 KB
testcase_42 AC 1 ms
6,948 KB
testcase_43 AC 6 ms
6,944 KB
testcase_44 AC 24 ms
7,808 KB
testcase_45 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative ((<$>))
import Control.Monad (replicateM, guard)
import Data.List (delete)

main :: IO ()
main = do
  [h, w] <- map read <$> words <$> getLine
  solve h w <$> replicateM h getLine >>= putStrLn

solve :: Int -> Int -> [String] -> String
solve h w xs | null ls = "NO"
             | any (f ls) [(di,dj)| dj <- [0..h-1], di <- [1-w..w-1]] = "YES"
             | otherwise = "NO"
  where ls = do
          j <- [0..h-1]
          i <- [0..w-1]
          guard $ xs !! j !! i == '#'
          return (i, j)
        f [] (di, dj) = True
        f ((i, j):rs) (di, dj) | (i+di, j+dj) `elem` rs = f (delete (i+di, j+dj) rs) (di, dj)
                               | otherwise = False
0