-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path14.hs
More file actions
260 lines (222 loc) · 8.14 KB
/
14.hs
File metadata and controls
260 lines (222 loc) · 8.14 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#!/usr/bin/env stack
{- stack --resolver=nightly-2018-12-12 script --compile
--package ansi-terminal
--package call-stack
--package containers
--package here
--package megaparsec
--package monad-loops
--package mtl
--package pretty-show
--package safe
--package scanf
--package split
--package terminal-size
--package time
--package timeit
--package vector
-}
-- relude
-- {-# Language NoImplicitPrelude #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TupleSections #-}
-- import Relude
import Control.Concurrent
import Control.Exception
import Control.Monad.Loops
import Control.Monad.State
import Debug.Trace
import Data.Bifunctor
import Data.CallStack
import Data.Char
import Data.Either
import Data.Foldable
import Data.Function
import Data.Functor
import Data.IntMap (IntMap)
import qualified Data.IntMap.Strict as IntMap
import Data.List as L
import Data.List.Split
import qualified Data.Map as M
import Data.Maybe
import Data.Ord
import qualified Data.Sequence as S
import qualified Data.Set as Set
import Data.String.Here
import Data.Time.Calendar
import Data.Time.Clock
import qualified Data.Vector.Unboxed as V
import Debug.Trace
import System.Console.ANSI
import System.Environment
import System.IO
import System.Exit
import System.TimeIt
import qualified Text.Megaparsec as P
import qualified Text.Megaparsec.Char as P
import Text.Printf
import qualified Text.Scanf as SC
import Text.Show.Pretty
import System.Console.Terminal.Size
pp :: Show a => a -> IO ()
pp = putStrLn . ppShow
ltrace :: Show a => String -> a -> a
ltrace msg x =
trace (msg++": "++show x)
x
iterateN :: Int -> (a -> a) -> (a -> a)
iterateN n f = (!! n) . iterate f -- n must be positive
first3 (x,_,_) = x
second3 (_,x,_) = x
third3 (_,_,x) = x
first4 (x,_,_,_) = x
second4 (_,x,_,_) = x
third4 (_,_,x,_) = x
fourth4 (_,_,_,x) = x
forceSpine :: [a] -> ()
forceSpine = foldr (const id) ()
forceAllElementsWHNF :: [a] -> ()
forceAllElementsWHNF = foldr seq ()
-- assert that prints to stdout in normal output sequence
assert_ :: (HasCallStack, MonadIO m) => Bool -> m ()
assert_ True = return ()
assert_ False = liftIO $ putStrLn ": wrong" >> exitFailure
-- timeIt :: MonadIO m => m a -> m a
-- Wrap a MonadIO computation so that it prints out the execution time.
-- timeItShow :: (MonadIO m, Show a) => m a -> m a
-- Like timeIt, but uses the show rendering of a as label for the timing.
-- timeItNamed :: MonadIO m => String -> m a -> m a
-- Like timeIt, but uses the String as label for the timing.
-- timeItT :: MonadIO m => m a -> m (Double, a)
-- Wrap a MonadIO computation so that it returns execution time in seconds, as well as the result value.
--
-- t1 = [here|
-- 37
-- |]
-- (3)[7]
-- (3)[7] 1 0
-- 3 7 1 [0](1) 0
-- 3 7 1 0 [1] 0 (1)
-- (3) 7 1 0 1 0 [1] 2
-- 3 7 1 0 (1) 0 1 2 [4]
-- 3 7 1 [0] 1 0 (1) 2 4 5
-- 3 7 1 0 [1] 0 1 2 (4) 5 1
-- 3 (7) 1 0 1 0 [1] 2 4 5 1 5
-- 3 7 1 0 1 0 1 2 [4](5) 1 5 8
-- 3 (7) 1 0 1 0 1 2 4 5 1 5 8 [9]
-- 3 7 1 0 1 0 1 [2] 4 (5) 1 5 8 9 1 6
-- 3 7 1 0 1 0 1 2 4 5 [1] 5 8 9 1 (6) 7
-- 3 7 1 0 (1) 0 1 2 4 5 1 5 [8] 9 1 6 7 7
-- 3 7 [1] 0 1 0 (1) 2 4 5 1 5 8 9 1 6 7 7 9
-- 3 7 1 0 [1] 0 1 2 (4) 5 1 5 8 9 1 6 7 7 9 2
--
-- If the Elves think their skill will improve after making 9 recipes, the scores of the ten recipes after the first nine on the scoreboard would be 5158916779 (highlighted in the last line of the diagram).
-- After 5 recipes, the scores of the next ten would be 0124515891.
-- After 18 recipes, the scores of the next ten would be 9251071085.
-- After 2018 recipes, the scores of the next ten would be 5941429882.
type T = Int -- simulation time, 0..
type S = Int -- recipe score, 0..9
data W = W { -- world
wtime :: T
,wscores :: S.Seq S
,welf1 :: Int
,welf2 :: Int
} deriving (Show)
parse :: String -> W
parse s =
W{wtime = 1
,wscores = S.fromList $ map toscore s
,welf1 = 0
,welf2 = 1
}
toscore :: Char -> S
toscore c = ord c - ord '0'
fromscore :: S -> Char
fromscore = chr . (+ ord '0')
time n W{..} = wtime == n
recipes n W{..} = S.length wscores >= n
main :: IO ()
main = do
-- let (usage,defargs) = ("Usage: ./14 [INPUTFILE]", ["14.in"])
-- args <- getArgs
-- -- when (null args) $ putStrLn usage >> exitSuccess
-- -- let [f] = take 1 $ args ++ drop (length args) defargs
-- -- input <- parse <$> readFile f
-- ss <- fmap (concatMap show) $ nextScores 9 10 return $ parse "37"
-- putStr ss >> assert_ (ss == "5158916779") >> putStrLn ": ok"
-- ss <- fmap (concatMap show) $ nextScores 5 10 return $ parse "37"
-- putStr ss >> assert_ (ss == "0124515891") >> putStrLn ": ok"
-- ss <- fmap (concatMap show) $ nextScores 18 10 return $ parse "37"
-- putStr ss >> assert_ (ss == "9251071085") >> putStrLn ": ok"
-- ss <- fmap (concatMap show) $ nextScores 2018 10 return $ parse "37"
-- putStr ss >> assert_ (ss == "5941429882") >> putStrLn ": ok"
let (usage,defargs) = ("Usage: ./14 [STARTAFTERNUM]", ["633601"])
args <- getArgs
let [after'] = take 1 $ args ++ drop (length args) defargs
after = read after'
hSetBuffering stdout NoBuffering
-- part 1
-- ss <- fmap (map fromscore . toList) $ nextScores after 10 return $ parse "37"
-- putStrLn ss
-- 633601: 5115114101
-- part 2
(t,w') <- timeItT $ iterateUntilM (recipes after) (update1 >=> return) $ parse "37"
printf "%.3fs to calculate %d scores (%.0f scores/s)\n" t after (fromIntegral after / t)
-- let needle = "51589"
-- printf "%s found at %s\n" needle (show $ seqIndexL (S.fromList $ map toscore needle) $ wscores w')
-- let needle = "01245"
-- printf "%s found at %s\n" needle (show $ seqIndexL (S.fromList $ map toscore needle) $ wscores w')
-- let needle = "92510"
-- printf "%s found at %s\n" needle (show $ seqIndexL (S.fromList $ map toscore needle) $ wscores w')
-- let needle = "59414"
-- printf "%s found at %s\n" needle (show $ seqIndexL (S.fromList $ map toscore needle) $ wscores w')
let needle = "633601"
printf "%s found at %s\n" needle (show $ seqIndexL (S.fromList $ map toscore needle) $ wscores w')
-- 106.762s to calculate 100000000 scores (936663 scores/s)
-- 633601 found at Just 20310465
-- | after the first m scores in the given World, get the next n scores
nextScores :: Int -> Int -> (W -> IO W) -> W -> IO (S.Seq S)
nextScores afterm nextn display w = do
(t,w') <- timeItT $ iterateUntilM (recipes (afterm + nextn)) (update1 >=> display) <=< display $ w
printf "%.3fs to generate %d scores (%.0f scores/s)\n" t afterm (fromIntegral afterm / t)
return $ S.take nextn $ S.drop afterm $ wscores w'
-- | world update function
update1 :: W -> IO W
update1 w@W{..} = do
let
(cur1,cur2) = (wscores `S.index` welf1, wscores `S.index` welf2)
(score1,score2) = sum [cur1,cur2] `divMod` 10
wscores' = (S.|> score2) $ (if score1 > 0 then (S.|> score1) else id) wscores
l = S.length wscores'
welf1' = (welf1 + cur1 + 1) `mod` l
welf2' = (welf2 + cur2 + 1) `mod` l
return w{
wtime = wtime+1
,wscores = wscores'
,welf1 = welf1'
,welf2 = welf2'
}
-- | find starting index of the first occurence of the first sequence within the second
seqIndexL :: Eq a => S.Seq a -> S.Seq a -> Maybe Int
seqIndexL needle haystack =
findIndex (\t -> S.take (S.length needle) t == needle) $ toList $ S.tails haystack
-- display functions, these return the unmodified World for easier chaining
printworld :: W -> IO W
printworld w@W{..} = do
printf "%4d (%4d recipes): %s\n" wtime (S.length wscores) (concat $ map fmt $ zip [0..] $ toList wscores)
return w
where
fmt (i,d)
| i==welf1 && i==welf2 = "("++[fromscore d]++"]"
| i==welf1 = "("++[fromscore d]++")"
| i==welf2 = "["++[fromscore d]++"]"
| otherwise = " "++[fromscore d]++" "
printstats w@W{..} = do
when (wtime `mod` 1000 == 0) $ printf "%4d (%4d recipes)\n" wtime (S.length wscores)
return w
printdots w@W{..} = do
when (wtime `mod` 1000 == 0) (putStr ".")
return w