blob: 1156b324612aa5296f19ef5753bc4d089efddf1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
import Control.Monad.ST
import Data.HashTable.ST.Basic as H
import Data.List (nub)
import Data.Maybe (mapMaybe)
type S s = H.HashTable s String [String]
-- Return Nothing if no match; unmatched remainder (can be []) if
-- match.
match :: String -> String -> Maybe String
match xs [] = Just xs
match (x:xs) (y:ys) | x == y = match xs ys
| otherwise = Nothing
match [] _ = Nothing
matchAny :: S s -> [String] -> String -> ST s [String]
matchAny s yss xs = do
t <- H.lookup s xs
case t of
Nothing -> let r = mapMaybe (match xs) yss
in H.insert s xs r >> return r
Just x -> return x
check :: S s -> [String] -> [String] -> ST s Bool
check s yss xss = do
zss <- nub . concat <$> mapM (matchAny s yss) xss
if null zss
then return False
else if [] `elem` zss
then return True
else check s yss zss
parseTowels :: String -> [String]
parseTowels = map init . words
parse :: String -> ([String],[String])
parse s = let yss = filter (not . null) . drop 2 $ lines s
xss = parseTowels . head $ lines s
in (xss, yss)
run :: [String] -> [String] -> ST s Int
run xss yss = do
ht <- H.new :: ST s (S s)
length . filter id <$> traverse (check ht yss . pure) xss
main :: IO ()
main = do
input <- getContents
let (xss, yss) = parse input
print $ runST $ run yss xss
|