diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fae3642 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin +.idea \ No newline at end of file diff --git a/day1/day1.odin b/day1/day1.odin index a39bc38..37e543e 100644 --- a/day1/day1.odin +++ b/day1/day1.odin @@ -4,6 +4,7 @@ import "core:strings" import "core:testing" import strconv "core:strconv" import os "core:os" +import "../utils" sample :: `L68 L30 @@ -85,9 +86,9 @@ solve_first_sample :: proc(t: ^testing.T) { @(test) solve_first_input :: proc(t: ^testing.T) { - contents, _ := os.read_entire_file("day1/input.txt") + contents := utils.read_file("day1/input.txt") defer delete(contents) - pointing_at_zero := solve_first(string(contents)) + pointing_at_zero := solve_first(contents) testing.expect_value(t, pointing_at_zero, 1158) } @@ -99,8 +100,8 @@ solve_second_sample :: proc(t: ^testing.T) { @(test) solve_second_input :: proc(t: ^testing.T) { - contents, _ := os.read_entire_file("day1/input.txt") + contents := utils.read_file("day1/input.txt") defer delete(contents) - pointing_at_zero := solve_second(string(contents)) + pointing_at_zero := solve_second(contents) testing.expect_value(t, pointing_at_zero, 6860) } \ No newline at end of file diff --git a/day2/day2.odin b/day2/day2.odin new file mode 100644 index 0000000..ecd60dc --- /dev/null +++ b/day2/day2.odin @@ -0,0 +1,96 @@ +package day2 + +import "core:mem" +import os "core:os" +import "core:strconv" +import "core:strings" +import "core:testing" +import "../utils" + +sample :: `11-22,95-115,998-1012,1188511880-1188511890,222220-222224,1698522-1698528,446443-446449,38593856-38593862,565653-565659,824824821-824824827,2121212118-2121212124` + +solve_first :: proc(s: string) -> (result: u64) { + s := s + buf: [100]u8 + for line in strings.split_iterator(&s, ",") { + hyphen_index := strings.index_rune(line, '-') + start_str := line[:hyphen_index] + start, _ := strconv.parse_u64(start_str) + end_str := line[hyphen_index + 1:] + end, _ := strconv.parse_u64(end_str) + for n in start ..= end { + str := strconv.write_uint(buf[:], n, 10) + defer mem.zero_slice(buf[:]) + + if len(str) % 2 != 0 do continue + half_len := len(str) / 2 + first_half := str[:half_len] + second_half := str[half_len:] + if first_half == second_half { + result += n + } + } + } + + return +} + +@(test) +solve_first_sample :: proc(t: ^testing.T) { + testing.expect_value(t, solve_first(sample), 1227775554) +} + +@(test) +solve_first_input :: proc(t: ^testing.T) { + content := utils.read_file("day2/input.txt") + defer delete(content) + testing.expect_value(t, solve_first(content), 21898734247) +} + +solve_second :: proc(s: string) -> (result: u64) { + s := s + buf: [100]u8 + for line in strings.split_iterator(&s, ",") { + hyphen_index := strings.index_rune(line, '-') + start_str := line[:hyphen_index] + start, _ := strconv.parse_u64(start_str) + end_str := line[hyphen_index + 1:] + end, _ := strconv.parse_u64(end_str) + for n in start ..= end { + str := strconv.write_uint(buf[:], n, 10) + defer mem.zero_slice(buf[:]) + + for i := 1; i <= len(str) / 2; i += 1 { + if len(str) % i != 0 do continue + first := str[:i] + found := true + for j := i * 2; j <= len(str); j += i { + second := str[j - i:j] + if first != second { + found = false + break + } + } + if found { + result += n + break + } + } + } + } + + return +} + + +@(test) +solve_second_sample :: proc(t: ^testing.T) { + testing.expect_value(t, solve_second(sample), 4174379265) +} + +@(test) +solve_second_input :: proc(t: ^testing.T) { + content := utils.read_file("day2/input.txt") + defer delete(content) + testing.expect_value(t, solve_second(content), 28915664389) +} diff --git a/day3/day3.odin b/day3/day3.odin new file mode 100644 index 0000000..d1e3dd3 --- /dev/null +++ b/day3/day3.odin @@ -0,0 +1,86 @@ +package day3 + +import "../utils" +import math "core:math" +import "core:strings" +import "core:testing" + +sample :: `987654321111111 +811111111111119 +234234234234278 +818181911112111` + +solve_first :: proc(s: string) -> u64 { + input := s + total: u64 + for line in strings.split_lines_iterator(&input) { + largest := '0' + largest_index := 0 + for c, i in line[:len(line) - 1] { + if c > largest { + largest = c + largest_index = i + } + } + total += u64(largest - '0') * 10 + largest = 0 + for c in line[largest_index + 1:] { + if c > largest { + largest = c + } + } + total += u64(largest - '0') + } + return total +} + +@(test) +solve_first_sample :: proc(t: ^testing.T) { + testing.expect_value(t, solve_first(sample), 357) +} + +@(test) +solve_first_puzzle :: proc(t: ^testing.T) { + content := utils.read_file("day3/input.txt") + defer delete(content) + testing.expect_value(t, solve_first(content), 17095) +} + +solve_second :: proc(s: string) -> u64 { + input := s + total: u64 + for line in strings.split_lines_iterator(&input) { + intermediate_total: u64 + largest_index := 0 + first := true + for i := 0; i < 12; i += 1 { + defer first = false + largest := '0' + starting := first ? 0 : largest_index + 1 + for c, j in line[starting:len(line) - (11 - i)] { + if c > largest { + largest = c + largest_index = starting + j + } + } + exp := 11 - i + intermediate_total += u64(largest - '0') * u64(math.pow_f64(10, f64(exp))) + } + total += intermediate_total + } + return total +} + +@(test) +solve_second_sample :: proc(t: ^testing.T) { + testing.expect_value(t, solve_second(sample), 3121910778619) +} + +@(test) +solve_second_puzzle :: proc(t: ^testing.T) { + content := utils.read_file("day3/input.txt") + defer delete(content) + testing.expect_value(t, solve_second(content), 168794698570517) +} + + diff --git a/day3/input.txt b/day3/input.txt new file mode 100644 index 0000000..ced32af --- /dev/null +++ b/day3/input.txt @@ -0,0 +1,200 @@ +2232212212212222211221231124224222213132222133122224222123222112324122222122221322222225222342243112 +2222312114222314322223142323251122424322142244122212213222222222242526225232262212234353242222112242 +3325444446453345434534234244443254434533443354443344424431124344542134454433534353443542455544444483 +2334235313232232645234524223233333333323323333233334323332325633143222333322242333132233233132212325 +2234311224123424222222224432222333212224412234223312244413252153222112433222334322772215422121224273 +4522445145543645454343253542221455532354534564325445322522535254222337733425252243221532745237255133 +2214225223121214462323123283942523226421423233325342644222213411423272383842222442422213122912324522 +2122242232325524322242212232524425223232232233432221122322233512432222441122422314222122221222212225 +8222353391373332335354222456125222358233122233316323355352531234333527222223352436381343533536331244 +2127632636444323427265228625582625772229446462233352433587748742382622354425852874557228522772714265 +5764566853423796763449339447557566366572334553648326634466376656683936736543746865667784426952852681 +2121232232222322211232122232213212117222223222221652221222212242222222222333321322222222222122522223 +3311487326434675433324437437335526732665253343574234535363333477334461753847265314545424442324747728 +6252536321432743472244167342323675732726575412571775613245775732227775657226312524123527567671676189 +7533722333717216436553422342221352632923463174227273634221314835124324462631282462922324654573644336 +3334347211322211322233222241233221232124212322322224423224253425525344442212222284312232222324322414 +8767635775767537537775596426945666564695551577422716939227657554649562833366674365266155727577774737 +7775767466374676353856676436275545371656656638858776373448786645468766554726777677755355577244574383 +4124457552243552342355664445373255223422339335535644524442445657442153557545543453354343433643267753 +6124333457242323425527522653254242224232423232264274434422411227635523364224422236253335315116127532 +3843363244543644643446444336332633352434545244436626634545444448444432343456656564456736353434435763 +2422221722221518823422211232528222221322741422521112323225722252542221222152231123242126243222522576 +1622233224223242225223226253345331335142347122554523313243535325924223222222332241922222221423233121 +4422161223245313242212152356523252352332114532131212331132322223662325121132255222245126112324622222 +4233231332312314222233333341133332452443423443134344332243234243444423443533423343333244354382332434 +6412258431772524433228362126666441227873942928375972932224772779977239924896932962725678357742792757 +2227271234224232322222332222221223242222336232222321222123332221232363322222123232311223225321123324 +7589939488935898867996484599788786867736849995938599889798476788896676459989897766888896597487889955 +3454654452545325445345241613354242541353364444436354434433222254535434343434244433352454491236544424 +3555422223544453332243232524152235232432234321322225424353448233244453333633454744244242322633235544 +2124222224441239425244322954112523572245362622825554225282222736532822246252222222625122321847223735 +3236336542322621344455252325253252236337264153213264532252332554223524342132622262555624217132225523 +2526592122123332422822131141234342452222223213126221224262242336444543224251621223527425633635432422 +4627434275335624743842223367643372773416353388754337724725344333445735354575952356357743428124523423 +5131323342333323332333223333231343333533322133333351233343323326353222332223323323355332223125436611 +3267823353225414622752883222125222822288682231242712212212222312622262222232262239152212766233622742 +3233632122333233633333333331713131221283512363322533235333333353253232423232232312332336353232511333 +7537335633333332333257451533743636333336344234383233638333825643833324862326234334536343333337341534 +7374226635593315434733244453342226646737436272495334563847314623624832636243233334512322529283445263 +4332232521223522524213221234143433214242236352238234234145322342235343223263631624558153124433322263 +2522212625442322522232213336422222244225234213335226232232544223291312422512225122122152452522284222 +3223121222448242222232124324212222232372344252326235832228322247122222322232422122282212222221222334 +3532267229665572922222236676865635148363573285411561725352232854345323542463955323228643283411566268 +3357562156445382573453552434624343344555753334452344275353435433233343545435554553531442333343545323 +4432285342325163234221332435222123365325322323334325472242261325439248524244352229353255664624222332 +5431252222458374243642592224346445254352332235374424452555534438625129442442434335415312335582323233 +4323424443537342215451244432322222322262445334343422342225131243343242422312542126413331246233333414 +4364214533233224324343345333333332333523353333324214315243433333323413413343433343343135333312343333 +3223134252331264234231223413332384833323311111472333258232326331233453222123283532162132322222213123 +2122322222222332222212412222421222212222335322222123213121232223222355331222241212232223222122212222 +2224234336222923229631122212222612332523531322272232233123322223442324123313256323423442722216232512 +3333324326462443643324233235432334632354333323332336163232334253342523333223351246225324332353535564 +2652435323434322222223325242213225213233122223236242225241342232234132526222345232157223522552124332 +3411222222226222221122322113222221223126312216224221122212222122242222222312122212727221212242231221 +4456532435443334732561536454334463553353556454575452634335511435653443333455255235435445465545553134 +2228332566243332533533252323335332231316214213243333232133434226343943323352214232213322333433335212 +3365426738758286223813946783465373375236837736556379353363573387385397747575645375432373453243373298 +2374464353232333237353476246233321127232426742236472547323234324246433373336253442412444322493272472 +3433823214282232422432246132534272631326662712841823232362422314263262437186423322512121721222764782 +2212221325332253132322215232314222142112221124222235222233333213232243132233223322232175233332233222 +1322232332221132111122231322312233222432221422243222233423433133225222224321322322323233327224222232 +1646353222222366621126365622131123313224423236214524422434321352522352211643433222432424454255232342 +3361246654224456345614565445236613412443442534524666655261365666531522166125553226265651516625126789 +4324334643744332474343444449444636345744136484654443344354443433464531343444454463434747785437245447 +5452122332323323125222212232221332222222222222222231232312182222123242331122112231122421221323232422 +2211251211252222622253221332252222212922232222322322221222422124228552222312622122221221222212274322 +6312233221334343211331335223232235222532314222232223323423323343132222221133225123323476243233223114 +6365746667644366678673776345675677645664653459445634735635562465556549961355736666746565734664645547 +3221223222222332212221322122324222122122122211112214222322122122222121222222112112232222231433222122 +1422361231254154455327225426522633323223321223545452553224325226628412212635854242361124447216543452 +3666233524341323332235392765343263455725455245627253316134426537127422852162423422242634754221114822 +3932433363332433232333726333333322334331332636223844223125733237523322343253323322253713213222333332 +4493744344343834344443452343336344428436454332433425458644535434483442554494443454624254346454444533 +5699934925565955456654646643377577254475687546547848667996565655157229655448156642565884755556349397 +2412344544333346124443433363233223333343333344336734136233423334433433343143232333143233365933334343 +1629643246222715451822963326475635412213424375224242216415646222713289214241172435222575212224121736 +2252522432412549512366312275222222373242325416522265412221721226556221122252235273275426642122427522 +1413222233624135145593211616522426244254844452521552272422254536455622433271358325522434313343224463 +3224423212432442132244433242415322342232432332224213224242231424233421323324222242444232222443422223 +3422233231433314333231233333233333333423333433332331343321233243133333323331342324322433343233423333 +4245333537332234633432342332323328332232224343333343334353514454433722242233353641212333285343631332 +5223226432542535334272221623443313523443252332624714433827453354551322323276223543323322425214216561 +9797352317238959996855458878658559627886527272323796576749782735857222478979158267967842734532637298 +2233315472222233225323231342221225322534411322222222252221323222211243442321411412233132323235245223 +3242242512222224434221246355113123221214231222336222222262323212273222434232324213712221324222532544 +5232232112233212221222742221224212221222222132222221222213222521351152131361223222222221231121122122 +2322322121321222222221241222222222222221211222223124142212222222123212322212222122222421122222252222 +4334454542453614443324434444464344564545444424444454554444454443434343364344354444434442344253434444 +2212322523313311222122522623343141322313342331212442222412224524322223244452231316412252262323322222 +2222212272212222122122222522113122242221222222222212222224122222221222122221224121212222212212412221 +2262337146893946174873662226535147545374544263382266265526568543452839587616544643126292665282936624 +3632252333332333333443223232262335313333233332314333343233345243313243233365363313235323332251334333 +3221232222222231322523223221226228231232223121521222423642122221212222322222122223241211231231323322 +2221222222211221222321222222321111241222212221223224222111226222222222127221122321122322222222223222 +6124144523332424733744135412344413421242123443515845332333352381548533242422427444334537433335322574 +7453758454284755866546827436558875877536562985475866626748436685734445624337877296528474836188782753 +5725733623574543384332644163741436413538624353353125322413732535252354534676342533233443636764346533 +3724543433444425433433334324347463344832345544343464234456334442253444343934444232343544352344734343 +6573566365455442255555524262564564545162457584866572865548453564655536755528442528355355335274452555 +3222221223313472322312322223112362322312222112321321222323333422212221332242211232332234312422322226 +6684364344445364343623423527355342443365534744737476345423442431424363432387333644234536114334313743 +3233322323622333233224331231516231133322322232233222222232342523213345323243332215613222522443353132 +5233232142321234421331321222222312221211123133132324142229222222223223232222223422232222224362224341 +1623812226295322222452341223423224244822222244262222226522254322222354323823234622623342833422134243 +8333332232332233233122333321222322323322223212332226112423223216223222223321223122433232322322133323 +1445455125545213412322444525223256423451342852266534614222242224134464414322623543351274434232725426 +5573546354364544548532342646434444554247464434444334464533335544555447424544744345433465422444335345 +4562565676457555226566266835565649635546563647665517725942797526353315545955559436375764268749645898 +6575389545666586355556557655258454466366756659655667656556582566555465559455532256575635466765755551 +2522372325223285372377443342324824613332232726232122334317271432643232352312841322424762333233395233 +2325212222222422242642232311222421214211222221222214422221222242131222122222521362214232321222124221 +3443334344363536646652475343315326533663446343345554247337628331336572334445334673738533443665543342 +2132212222231122223244212212222212228222233272341222122222242352251212322325222212211922122624222222 +9575468865546956387974456933636335313545532835783785683744589494443434344565445464834553577825488995 +2232221523232232222252336212562321222122411723311522222422216223221222621222176222222111614122221252 +2411324543243436234332382332234214435321523422313323444432433242322423134133444241124142332331234444 +3433433334352343225433321342331324334324436434454253433254434433232322423433335424444433233323343334 +3223422232335211433544355441333533324324224521343345431633342323623234437234243141342447733332355443 +2411332212121252533343422283442212322133324233124822321255297222331282432222722222422225234551324542 +1212122312232223236244132211522422335231321321233311413522332233123232243232312123322221522432333223 +7334732333343334432153322533242333342334333433542333323344232343333631333134333324341334323332233321 +4223522232212222331134221222522114354221215211122143472242233151322215324333435221222111222125242222 +3222333222332132352223221213322232222113211132322232323223262222322232231433522222332222122315322222 +4241254433142142123222423422312231234332242212342422234142423232314242344322144224343422223212435253 +4435124394543415434351654321444434453344533554424428337244554533353443435545332645235353543553624434 +4953545494325476235384273555532639985727583622585542734352939855234464949436494654347624427975335752 +1232253544413221381621112135437813322644122432322123133243121211252322135345213422232223825116322142 +7176762571577351467326138773541464454587645184235842236622256247346688118431458431258687874365414659 +2234232222222322322227532122582522122332422321222223222212152215325222223321221223223281421221322272 +2425383136529333525526333212772263633723248433642255323553412633172463436577851421236523265744234522 +3424262253652335642215242324645354215251762247525283223142532441334534261222436332322215452368293294 +3525625641636442423534235631325866434443266454611324526226469346631344363145685421462455233735624345 +5276763684237376172166382633667247437378333539246423364394367744953897395676234326742766684349243562 +4233422424444222242434315214323442396243233222224442344444422342234344623323212323224426342442427234 +2455654832635651757551426372442144653642514347558494583127222312332291665422754344255247559626765126 +2423243424113222233244222221234543212222174224434222112321343222222321212333423144422255222222413122 +3323333236543227312763323323522323831924221328237333782233235623233343431243535322223335382353122133 +2642453233833326882633337743646383422483273534435314347233322527835732448264631373443364128368335834 +6321247133126761767527423261476422264542629276752248335262214216629211627473621659671535368222612669 +5343777868459585575482665644767666773655757774767864755776477544456869665597555737746565466765544456 +1561262334141223245665535412224136232446722652331362425423161246335221246455132554556132262625222555 +5725416122222431321214232245422252241221232124234422112421223522241233231222223232253322412111224464 +1342634245353479774636277557464349166649866286327455463463636677272756383566156564766367664434525544 +2222214123614223121322332318514242112223523113141382142232142142233231421222362222233262322213343743 +6232323432322254643333225193233343333423321243245225332132242323632264522322336122232231212351212223 +3134444244333433225323244553224323233233323334332322233334131123434334332263343643354324333333333333 +5532268321431422223343232322352234537313226334376242424454322432374463252213326577332252837226334641 +5454844649566486677668957445459426468556946465673647773845366434343566647393767866654877854729566655 +2422261322545145375223322644442555224434132222357432123332514282554322645316424122242235533345325354 +3453712694444284286643414431362435383471343775542345353323626357143668234121858535252933816335326432 +2692252814322492259236385535955522425425223342262252322174535732822419432644742213257343242222582643 +6224333313434321343237423443742234422322332352563424433343233254324214252234443222233353343243333445 +4341454432233455223475433475834433424452531334443432434434543434324144237344441424343324333441646255 +7434464744476424675745843545587323486545535756479535344455254523223337565676533355416635334549535976 +3553356443855549413244624436535286254385433334226234338534135565231251535244343542565554226235635334 +6573451149567373447735352333764555854832677437453435454465844374557267983453554498384334844362354649 +3222254452422632224342325232542722451421242426521244243425424432222231324222222222222224444132543462 +2122421222232412322232411222341132211222815512622251621622322425233342126123321222212233532357222222 +2212232521412331133232455327233262332232323333233232141422322434333231222732323462221323232213222211 +3232332221511232236313222373234232352363332233522423133221423342323322222133322133333332222243322362 +2336422223291359222423422723843312323142222422352222453222313423325226423333532343317321422225321142 +4343335344372513234535342343343331535336323543354634443324332253537437441345145433453334416434323352 +3237453244334333332544534453434432432453435333343236534453223333433262234443423444431235133845232333 +6456227863763242255472623627231646622542245446515545363156162236672662444622442685215534225266296642 +2221332422312223552533253124222143223432222123213232331623267323322312232362544423433242224434255212 +6223465529466236233843281262333513534533347144636335524465365425322223373826446133535333335936553663 +2422522232222332132222436342244222212125223234334411321232322424384243222245362244243432424231222224 +2455326555464433825522411753425666565575612655266536636523455355543744564462384354365164425355735543 +2222222223222222111222222222212213221233232222222332113222221222262222132221221212122223112222122132 +3757772733244484433471354299755673837533632373346333735764325326263332933364634336225349447642767347 +6437333932233533335653243853723337632339355633363334344352325433234631533434522225121233842335623366 +1522322353333243423526152523222341222216322522631222136252125432232222422232211222322636312253262237 +3244925232233442334453242444241423433222233234323483133314262243244121333332323242321254222333333331 +2353223342323312327232322421224232123221132271242314335221333242245322142323223222134422332222223313 +2232223222152322222221221121232212124133322431112342321232222222321222211232233311232221222232222123 +3453545474334436473443566463435375435867524354646246572375445332562455654454447265633425553447415546 +8325538754433525383334434495321546255334334349823332443333244294334243537453573399238389554251532513 +7656246667563266466285456546456634856666957366663567458366756667648824545698465586644656686567376793 +4215351543432113323415311324225123133123142113334411255112542454441323515215512232515424352535536789 +1111223223122222222212222222222121222121222222225422222222212322222222233211242234122121222221222213 +5678874659337973585843437281459576744742867132948467828423979842756986437335768649266634535646384756 +3321432323333214232334221532121112433224263223323333735223333142518214311333551312233337431332222331 +3221122322355421122222453222425223221222442312325124432242254223232322354422311511222231212225272322 +3326243721153143233313222221442134142337593334337525233226413533524382451233373863723253915332223322 +4323922223241324233114233242234372243132523323224232522234672222932332123232522413335233242223326132 +4322523121353121333322532434134233233114242224344533323351233542365523264233431435614923234534264343 +2413439321538222312223262451523242222223422221322414424312213143162222233225243213124234222242234342 +3342122215245575225214522336225122222452225452142422442322242424233553522122474675551126222332423412 +2233212232112143223212212231131212212233232223222231322122222122333332123123222222332132432232232322 +3123343334341232234231322243134412132113314413424131312441443333224114142441423243344314242144456789 +5385554234435342844722553342162686427245123565484553455665282646565214247314425653986444256446243726 +1423322322142322343222211212322232222242323233132433232122324221321213111311232212131253212246222322 +2251232221222126122123211222231232221222262212221122111222221232222322212212212223221222222222222242 +4433211425222435344223312275476734164333243421521257332731712552245523223432413345313534272123232531 +5374861454518743534536288564523325333536745576255527655233661778769564756756829149877383953443336824 +3313122322343331253323335333343224231126233223221243331333312332333332332332233322123323223253233333 +4413524351244212524255443427242452242444414252125243353241535255256425423353123331432285522243215864 +4233233624553534233334344223842653442554363333343434314464443234333354472933333443314632434634254324 +3553898859594653737688866779538897656477718999867897996545698835748668695853929454638293454775739576 +3616433333424364342231322772322273742562435322524343222733733633315231217432253332344435423437477333 \ No newline at end of file diff --git a/day4/input.txt b/day4/input.txt new file mode 100644 index 0000000..8873b54 --- /dev/null +++ b/day4/input.txt @@ -0,0 +1,140 @@ +@.@.@@@@@@@@.@.@@@@@@@@@@@@@.@@@@..@@@@.@@...@@@@.@@...@@@@.@@@.@@@@@@..@.@.@@@@.@..@@..@@.@.....@@@@..@@@@@@@@@@@.@@.@.@@@@.@..@@@@..@@@.@. +.@.@@.@@@..@@@.@@..@@@@@.@.@@@@@.@@.@@.@@..@...@@@@@@@...@@..@..@@@@@@.@@@@..@..@@@@@.@.@.@.@@@@.@.@.@.@@@@@@@@...@@..@.@.@@@@@...@@..@@@@@. +.@@.@@@.@.@.@@.@@@@@@@@@@..@..@@..@@..@.@@..@@.@@.@.@@.@..@@@@@.@@@@@@@..@@@.@.@..@.@@@@@@@..@@..@@.@.@.@@.....@@@..@@.@..@@.@...@@@..@.@@@@ +....@@@@@@..@@@..@@@@@.@.@.@.@@@@@@..@.@@@.@....@.@@@@@.@@.@@@@@@.@@@@@@.@@..@@@@...@@@@@@@@@@..@@.@@.@...@.@.@@@@.@.@@@@.@.@@.@@.@..@.@...@ +@@.@@.@..@@@......@@.@.@@.@@.@.@..@..@@@..@..@@@@@@..@@.@@@@@@@.@.@@@..@.@.@.@.@@@@.@@...@.@@@..@@@@..@@@@@@@@@@@.@@.@@@@@@@.@@@@@..@..@..@@ +@@@@@@@.@.@.@@@@@.@@@@@@@@@.@@@@@@..@@@@@@...@.@..@.@.@@@@@@@..@.@@@@@@@.@@@@@.@@@.@...@@.@..@@@@.@@@@@@..@@@@@.@@@.@....@@..@.@.@@@@@@@...@ +@@.@@@@.@.@@@.@@@..@@@@@.@@@@@@@@@@.@@@@.@.@@@@@@@.@....@@@.@.@@@@.@....@@..@@@@@..@@@@..@@....@@@@.@@@..@@@@@@.@..@@.@@@@.@@@@..@@@@.@@@..@ +..@@..@@@.@@..@@.@@@.@..@@@.@.@@@..@@@@@@.@.@@@@.@.@@..@@..@.@.@@@@........@@@@.@@@.@@.@@@@@.@@@.@@..@.@@.@.@@@.@@@@@.@@@.@..@@@@..@.@@.@@.@ +@@.@@...@..@@@@@.@@@@.@@@.@@..@.@...@@..@@@@@..@.@@@@@@@..@@@@.@@@@@.@.@@@.@@@....@.@@@.@.@.......@@.@@@..@..@@@@@@@...@..@@.@@@@@.@@@@@..@. +...@@@@.@...@@.@.@..@@.@@@..@@.@@@..@...@@@.@..@@@@@..@@.@@..@@...@@.@..@@.@@@@@@@@.@.@.@@@@@@@@@.@...@..@@@@..@@.@..@.@@@@@@..@@.@@@@..@..@ +@.@.@@@@.@.@.@.@@..@.@@@.@@@...@.@.@.@@.@@@@@@......@@.@@.@@@@@.@@.@@@@....@...@@@@.@@@@...@.@@.@.@@@@.@@@@.@....@@@.@@@@@@@@@@.@@@@.@@@@@.. +@.@@@@@.@.@..@@..@...@@@.@..@.@@@@@@.@@@@@.@@.@.@.@@...@@@.@@.@.@@@...@.@.@..@.@@..@@...@@@.@.@..@@@@.@@@@..@@@@@.@.@..@..@.@.@@.@....@....@ +@@@@@@@@@.@.@.....@@....@@@.@@.@@@@@.@@.@.@@@@@..@..@@.@...@.@.@@@.@.@@@@@@..@@.@@....@..@@.@.@@@@.@@.@..@.@@@@.@@.@@@..@@.@@...@@..@@.@@.@. +.@@@..@..@@.@@@.@@@@.@@@.@..@@.@@@..@@@@.@@@@.@.@@@@@@@@@.@.@@@@.@@@.....@@@@@.@@@@@@@@@@@..@@..@.@@@@...@@@@.@@@@@@@...@@@@@@@@@@@.@@@....@ +@@@@@..@@..@@.@@@@.@.@@@@@.@@.@@.@..@...@@@.@@.@@@@@@.@.@@@..@@@@@@@@@@.@@.@..@.@@@..@.@.@.@...@@@@@..@@@.@@@.@@@....@@.@.@..@@.@@.@@.@@..@. +@@@@@@@@.@@@@.@@@..@..@.@@..@@.@..@@@.@.@@...@@@@@.@@@..@@@@@@@@..@@@@...@.@..@.@@@@@@..@.@....@..@@@@.@@@@@@.@@@....@@.@@@@.@@@@@..@@.@..@. +@@@@.@@@.@@..@..@@@..@@@@@@@@@@@..@.@@@..@@@@..@@@@@@@@@@@@@@..@@@..@@@@@@@@@.@..@...@@@.@@.@.@......@@.@..@@@.@...@.@.@@@.@@@@...@@.@.@..@@ +@@.@.@@@@@@@@.@@@..@.....@..@.@@.@@@@....@@@...@@@@@@@@@....@.@@@@..@@.@@@@@.@.@@.@@.@.@@@@@@@@@@@.@.@.@@.@@@@..@.@.@.@@@.@@@.@@.@@...@.@@@. +@..@@.@@.@@@..@@.@@@@@@.@.@@.@.@.....@..@..@@.@@.@@@@@@@@..@@.@@@@@@@.@@@@...@@@.@@..@@..@..@@@.@.....@.@@.@@@@@...@@.@@@.@@@.@@@.@@..@.@.@@ +@@@@.@@@@@.@.@@.@...@.@@.@@@@@@@@@.@@@@@@.@@..@@@.@@@..@@.@.@@.@@@@@@.@@@.@..@@.@@.@@..@.@.@@@.@@@@@.@@.@...@@@.@@.@@@@@.@@..@@@@..@.@@@.@@@ +.@@@@.@....@..@@@@@@.@@@.@@@.@@@@@.@..@@@@@...@@@@.@@.@@@@@@@@.@@@@.@@@.@@..@...@@..@@.@...@@@.@@@@@@...@.@@@@@@@@@..@@.@@@.@@@.@.@@@.@..@@@ +@@@..@@@@.@@..@@@@..@@@.@..@....@@.@..@@.@..@@@@....@@.@.@.@.@@.@@@@@@@..@@@.@@@@..@@...@@.@@@.@@@@@....@@@@.@@..@@@.@@.@@..@@.@@.@...@@@..@ +@@@@@.@@@...@.@@..@.@@.@@..@..@.@.@@..@.....@@@@..@.@@@@.@@.@@@@@@@@@.@@..@@@@@@..@@..@..@.@@@@@@..@..@....@@@@@.@@@@@@..@@@@@@@@.@@..@@.@.. +.@...@@@@@@.@@@.@@@.@@@.@.@@@.@@@@@@@....@@@@@@.@..@@@.@@@@.@@@.@..@@@@.@@@..@.@.@@@@..@.@.@@...@@@.@.@@@.@.@@@@@@@.@@..@@.@.@.@.@.@@@@.@@@@ +@@@.@@.@@@@@@.@@@@@..@@@.@.@..@.@@@@.@.....@@@.@......@@@.@...@@@..@@@..@@.@...@.@@@@.@.@@.@@@@@@@@.@@.@@@.@.@...@@@@..@.@.@.@@@..@@@@@@.@@@ +@..@@.@@@@@@@@@@.@@..@.@.@@@@...@@..@..@@.@@@@.@.@....@.@@.@@@.@.@@.@.@.@@.@@@@@@@@@@@...@@@.@..@@.@.@@@@@@@@@@.@@.@.@@@.@@.@@@.@.@@@...@.@. +@@@@@@.@@@..@.@@@@@@.@@.@.@@@..@@@@@@@@.@.@@@@.@@@@@@@.@@@.@@@@@@..@@@@.@.@@@@@..@@@@@@@@@@.@.@@.@...@@.@@...@@@@.@@.@.@.@@@@@.@@@.@....@@@@ +.@@@@@@...@@.@.@@@.@@@..@.@@@@@@@@..@.@@@@@@@@....@@@@@@@.@@.@@@@@@@..@@....@@@@@@@...@..@.@...@@.@@@.@@@@.@.@@@.@.@@@@@@@.@@@@@@@@@@@.@@@@@ +@..@@@@.@@@@@.....@@.@@.@@@@@@.@..@.@@.@@.@@@@@.@@@@@@@...@.@.@........@..@@..@.@@@.@.@@.@@@.@@@.@.@.@@@.@..@@@@@..@@..@@.@.@@..@.@@.@@@.@@@ +...@.@@@.@@.@.@....@@@@@..@..@@@..@@@@@..@..@@@.@...@.@@.@@.@.@@..@.@@@...@.@@@@...@.@..@@.@@.@@@.@..@@.@@.@@.@@..@@.@.@.@.@.@@@@@@@@@...@@. +...@.@.@.@.@..@@@..@.@@...@@@@@@@@@@.@..@..@.@@.@.@@@@.@@@@@..@.@.@@@...@@..@@@@......@@@.@@@@.@@.@@...@@@@@@@@@@@@@@.@.@@.@@@@.@@..@.....@@ +@.@.@.@@@...@@.@@@@@....@@.@.@.@@.@@@@.@@@@..@@.@@@@.@@.@@@@@.@@@.@@@@@@.@@@.@@.@.@...@.@.@.@@@.@@..@@@.@@..@@@.@@@..@..@@@@..@@.@..@.@@@@@. +@@.@@@...@@..@..@@@.@@@@.@@@@.@@@.@@@@..@@@@@@@@...@@..@@@@..@.@@.@@@@@@...@@@@@@@..@.@@.@@@...@@.@@...@@@@@.@..@@@.@@@.@@@@.@@@@..@.@@@@.@. +@..@@@@.@@.@@@@.@@@.@.@@@.@@@.@@@@..@@.@@..@@@.@....@.@.@@@@.@@@.@.@.@@.@@..@.@@.@@@@@@@@...@@@@@..@@@.@@@@@@.@@@@@@.@@.@@@.@@..@@@@@@@@@.@. +@@@...@@@.@@@@@@.@.@@@@@..@.@@.@@.@@.@.@.@@@@@@.@..@@.@@@.@..@.@@@@@@@@@.@@@@@.@@@.@.@.@@.....@@@@.@...@@@@@.@@...@@@@@@@@@@@..@.@@@.@@.@@@. +@@@@@.@..@.@@@@@@...@@@@..@@@@@.@...@@@@@.@.@@.@@@..@@@@@@@.@@@...@@.@@@.@@@.@@@@@@@@@@..@@.@.@@@.@@@@.@@@.@@@.@..@@@.@@@.@@@..@@@@@.@@@..@@ +.@@@.@.@@@.@@.@@@@.@.@.@@.@@@@@@@@@@@.@@@@..@@.@@@@@@.@..@@@.@@@@@@@.@@.@...@@.@.@@@@@.@..@..@@@@..@..@@@@@@@@@..@.@@.@..@@..@@@..@@@.@@.@@. +@@@.@@..@@@@@.@@@.@@@....@@.@@@@.@..@@@..@@.@@@@@..@@@@@..@.@@@@.....@@@..@@@.@.@..@...@@@@@@@@..@@@.@.@@...@@.@...@@@@@@@@.@@@.@@@.@.@.@@@@ +@@.@@..@@@@.@..@.@@@@.@@@..@@.@..@.@@@@....@@@.@..@@@@...@.@@.@@@@@@@.@.@.@@@@@.@@@..@@...@@@@@...@@@@@@@.@.@@.@@@.@.@@.@@@@@@.@.@@.@.@.@@@@ +@.@@@.@@..@@..@@@@.@@.@@@@@@@@@@@.@.@@..@@@.@@..@@.@@@@.@..@@@@@...@@..@@.@.@.@.@@@@@@.@.@@........@@@.@@.@.@@@@.@.@...@@@@....@@.@@@@.@@.@@ +.@@.@..@.@@@@@@@.@.@@@@.@@@@@@.@@@@@.@@@@.@@@..@.@@@..@@@@.@@@@@.@.@.@@@@@.@@@@@..@@@@@@@@@.@@..@@@@.@@@@..@@.@@.@@@@@@...@@@@@.@...@@@@@@@. +@@.@.@@@.@..@.@@.@.@@..@.@.@@@@..@@.@@......@.@@.@@@@@@@@..@@@@.@.@.@@@@@.@@@.@@@.@@.@@@...@....@....@@@@@@....@.@@@@@.@@..@@...@@@@@@..@@.@ +@.@@.@@@@...@@@.@@.@.@.@@.@@.@@@@..@@@@.@@@.@@@@@@@@.@.@@@@@@@@@@@@@@.@.@@@.@@.@@.@@.@@@@@@@.@@@@...@@@.@@...@@@@@@.@.@.@.@@.@@@@.@@@.@.@@@@ +@@.@.@@.@..@.@@..@..@@@@.@@@@@.@@.@.@@@.@@@.@@..@@@@...@@@@.@@..@.@@.@@@@.@@@.@@@..@@.@.@@.@..@@....@.@@@.@@@@@@.@@.@@@.@@@..@.@.@@...@@@@.. +.@@@..@@@..@.@.@@@@@.@..@@@..@@@.@@@@@.@.@..@@...@.@@@@.@@@@@@@@@.@@@..@@@@@@@@@@@@.@@@@..@@@..@..@@@@@@@@..@@@@@..@@..@@..@@@@..@@@@.@@.@@. +@@.@....@@@@@@@@..@.@@@@@@@.@@.@@@@..@@@@.@@..@..@@.@@@@..@@@@..@@...@@@@@.@@@@@@@@@..@@@@@.@@@.@@@.@..@@.@.....@@@@@.@@@@@.@@@.@@.@@@@@@@@. +.@@@.@.@..@@.@@...@.@.@.@.@.@@@@@@.@@@@@.@@@.....@@@@.@.@..@@@.@@@@@@@@.@@@@@@..@.@..@@@.@@@@@..@@@@@...@@@@@.@@@.@...@@..@@@@@@@@@@.@@@.@.@ +@..@@@@..@@..@.@@..@@@@@@@@@.@.@@.@@.@@@@@.@@@@@@@@@..@@.@@@@@@.@@@@@@..@@@.@..@@@@@@@@...@@@..@@..@@@@.@.@@@@@@....@....@@@...@@.@@@@@@@@.@ +@@@.@@@@@@.@@@.@@.@.@@.@.@..@@@@..@@@@..@@@.@.@.@@@@@@.@.@.@@@@.@...@.@@@.@.@@@@.@@.@@@@@@.@@@.@@.@@@@.@@.@@@@@@@@@@....@@.@@.@.@@.@@@@@@@.. +@@.@@.@@@....@@.@@.@@@@@@..@@@..@@@...@..@@@@@..@.@.@.@@@@@@@.@@.@@@.@@..@@@@.@..@@@.@@@@@.@.....@..@@@@@.@..@@.@@..@..@@@..@@@@@@@...@@@@@@ +@@@....@@@@@@@.@@@@@@@@@...@@.@..@.@@@@@..@..@@@@.@@@@@@.@@.@.@.@.@.@@@@.@@.@.@@@@@.@@@..@@@....@..@.@.@@.@.@.....@@@@@.@@@@.@.@@@@.@.@.@... +@@@.@.@@.@@@@....@@@@.....@.@@@..@@.@.@.@...@@@@.@@@@@@@.@@@@@.@..@.@.@.@@@.@@@@@..@@@@@.@@.@.@.@.@.@@..@.@.@@@@@@@..@...@..@@.@@@@@...@.@@@ +@@@@@@@@.@@@@@@@.@@@@@@@@@@@@.@@@@@@.@..@.@.@@..@@.@@.....@@@.@.@@@.@.@@.@..@@@.@.@@.@@@@..@@.@@@....@@@@.@@..@@@.@@@@@@@.@@@@...@@@@...@.@@ +.@@@@@@@@@.@@@@@@@..@@@@@@@@.@@@@@@@.@@@@@@@...@@@.@@@.@@.@@@.@..@@@..@@@.@..@@@@@@.@@@..@@@@@.@@@@@@@@.@@..@@@@@.@@@.@.@.@@@....@.@..@..@@@ +@@...@@@@@..@..@@.@@..@@.@@..@@.@.@@@@@@.@@@@.@@@...@@..@@@@@@@@@@@..@@@.@@@@..@@..@@@@@@@@.@@.@.@@..@@@@@@.@@..@@.@.@@@@@..@@@@@@..@@..@@.@ +@.@@@@@.@.@@@@@.@@.....@@@.@.@@@.@@@..@@@@.....@.@..@@@...@..@@.@@..@@@....@@.@.@@@@@@@@@@@@@@@..@@.@..@.@@@@@@@.@@..@.@.@@@@@@@@@@@.@@@@.@. +...@.@.@@@@@@.@@@..@@..@@@...@@..@.@..@@@@@@@@@.@@..@@..@@@@@.@.@@.@@@@@@@.@@@@@@@@.@..@.@..@@@@@@.@@@@@@.@.@@.@..@@@.@@@@@@@@@@@@@@@@.@@@@@ +.@@@..@@.@..@@@..@..@@@@..@..@@@@@@@@@@@@@@.@@@.@@@@.@@@@@.@@@....@.@@@@.@.@@@@.@.@.@.@@.@@@@.@@..@..@@@@@@...@@..@.@..@@@@.@.@@@@..@..@@@@. +@@..@..@..@@@@@.@@@....@@.@..@.@.@...@.@@.@@.@@@.@@.@@@@...@@..@@@.@@@@@@@@..@@@.@@@@@@.@@.@@.@@@@@@@.@@@@@.@@...@@@@@..@@@@@@@.@@@@...@@@@. +.@@.@@..@@@@@@..@@@@@@@@@..@...@.@@..@.@....@.@@@@.@@@....@..@...@@@@@.@..@.@.@@@.@@@@@..@@.@@@@@...@..@.@@...@@.@@@@@@@@.@@.@@@@.@.@..@.... +..@@.@..@@@.@@.@.@@..@.@@..@...@..@@.@@@@@@@@@@@@.@.....@.@@@.@@@@@...@@.@@@.@.@@@@@@.@@.@......@@.@@@..@....@@@@..@..@...@.@@@.@....@@@@@@. +@@@@.@@.@.@@...@@.@..@@@@.@@...@.@@@@@.@@@..@.@.@....@@@@.@@@@@.@@@@@@@@@..@@@.@.@..@@.@@@@@@.@.@.@.@.@.@.@@.@@@.@@@@@@.@@.@.@@.@@...@@@@.@@ +@@@@.@.@.@@@.@@..@.@@@.@@..@@@@.@.@@@@@@.@..@.@.@...@@.@@@.@.@@@@@@.@@.@.@.@.@@@@.@@@....@@@@@.@@.@@@@@.@@@@.@@@@@..@.@..@.@@@@..@@@..@@@.@@ +...@.@.@@.@@.@@.@@@.@@@..@@@@@@@@@.@@@@@@@@..@...@..@@..@.@@@@..@@@@@@.@@@@@@@@@@@@...@@.@..@@@...@..@@@@..@..@@@@@@@@..@.@@@.@@@.@@@@@@@@@@ +@.@.@@@.@@.@.@@@@@.@@@@@@@@@@@..@.@@@@@.@.@.@@@@@@@@..@.@.@@...@@.@@.@@.@@@.@@@@@.@@@.@.@@.@..@.@@@@.@@...@.@.@@.@..@....@..@@@@@@.@@.@@@@@@ +..@.@@.@@@.@@..@@.@@.@@..@@.@@@@@@.@@...@@..@@@@...@.@@@.@@@@@@@@@...@@@.@@@@@...@@.@@..@@..@..@.@.@.@@@@.@@.@..@@@@@@..@@@@@@@@@@@@@@@@@@@@ +.@@.@@.@...@@....@@.@.@@..@.@.@@.@@@@..@@@@@@...@@@@@.@....@@.@..@@@..@@.@....@@.@@@.@....@@@.@.@@@@.@..@.@.@@@@.@@...@.@.@@@@....@@.@@.@.@@ +...@@@@.@@@@.@@@.@...@..@@.@@@@.@@@@@..@.@@@@@@@....@....@.....@.@@.@.@@@@@.@@..@@@...@@@@.@@..@@..@.@@.@.@@.@.@@.@..@@@@@.@..@@.@@@.@@@@@@@ +@@.@@@..@@@.@@@..@@@.@..@@@@@@.@@@@.@@@@@@..@.@.@.@@..@@@@.@@@.@@.@@@@.@@@@@@@..@@@@@@@@..@...@@@@@@.@@@....@@@@.@@@@@.@@@.@@@@@@@@.@@...@@@ +..@.@@@@..@@....@@@.@@.....@@@@@@@@.@..@.@..@@...@.@..@@@.@@@.@...@@...@@@@.@.@@.@@@...@..@@@.@..@.@@@@@.@@...@@@..@..@@@..@@.@@@@@@..@@@@@@ +.@...@.@@..@@@.@.@@.@@...@.@@@@.@@@@@@..@@.@@@@....@..@.@@.@@.@@.@@@.@.@@@@.@.@@..@@@@@..@.@@.@.@@.@@@@...@@...@.@.@@@.@@@.@@.@@@@@@@.@@@@@. +@@..@@@@@.@...@..@..@@@..@@@.@@@@..@.@@.@@@@.@@.@@@@...@..@@@@@@@@@@.@@@@@@.....@@....@@...@@@@@..@@@.@@@@@@@@.@@@...@.@@.@@..@.@..@.@@@@@@@ +.@..@@..@...@@.@@@.@.@..@@..@.@.@.@..@@@@@@..@..@..@@@@@@.@@.....@.@@@@@@@.@.@.@@.@@@@...@@@@@@.@.@@.@@@@@.@..@@.@.@@@@@@@@@@@@..@@@@.@.@.@. +@...@@@@@...@@@@@@.@@.@...@.@@@@@@@@@@..@.@@@..@@.@@@..@@@@@@..@@@@@.@@..@@@@@@@@.@@@@@@@.@.@@@@.@@@@@@@...@@@@@@.@.@.@@@@..@@..@.@.@@@@@@.@ +.@..@@.@@.@@@.@@.@@...@@@.@..@.@@.@@@..@@..@@@.@..@@@@@.@.@@..@.@..@...@...@...@@.@.@.@.@@.@@.@@.@@@@..@@@..@@.@@.....@@@@.@...@@.@...@.@@.. +@@.@@.@@.@@@@@@@.@@.@..@@@@@@@.@...@.@@@..@@..@@.@@@@..@@@@@@.@@@@@.@@@@@@@.@.@.@.@.@.@.@.@@@@@@@..@@@.@@@.@@.@.@@@..@@@.@@@.@@@@.@@@@.@.@.. +@@.@..@@@..@..@.@@@.@@@@@@.@.@@@@@@@@@..@@.@@@@.@.@.@@.@@.@@@@@@..@...@.@@@@@@@@@@@@.......@@@..@...@@@@@@@..@.@@@@@@@@@....@@@@@@@@@@.@@... +..@.@@@.@@..@@...@.@@@@...@.@@@@..@@@.@..@.@...@@@.@@.@@@@@.@.@@.@@@.@@.@@@@@.@@@.@@.@@@..@.@..@@@@@@@..@@@@@...@....@.@@.@@@..@@@@.@@.@@@@@ +@@@.@.@.@@@@@@@@@@@...@..@@@@...@@@@@.@...@@@@@@.@@@..@@@@..@@@@@@@@@@@@@@@@.@@@..@@.@@@@...@..@......@.....@@@.@@@@@@@@@.@@@..@@@@@.@@@.@.@ +@.@.@@.@@.@.@..@.@@.@@@@@..@..@@@@@@.@@@@.@@@@@.@@@@@@..@@@..@@@@@@.@.@@....@..@@@.@@@..@@@@...@@.@@@@@@@@.@@.@.@.@.@@.@.@.@.@@@@@@@..@@@..@ +@@@@@@@..@.@@@.@@.@..@@....@.@@.@@.@@@.....@@@@@@@.@@.@.@@..@@@@@@@...@...@.@@@@@..@@@@@@.@@@@.@@...@@@...@@@@@@.@@@@.@.@@.@....@@@.@@@@@... +@....@@.@.@.@...@@@..@.@@@.@@@@@.@@@.@...@@.@@.@@..@.@....@.@@.@.@.@.@.@@.@@@@.@@.@@..@@@@@@@@@..@.@@@.@@.@.@@@@@@@@@@@@.@.@...@..@.@@@..@@@ +.@@.@@....@@@.@@@..@.@.@..@.@@..@..@@.@@..@.@@@@@@.@@.@@@@@.@...@@@@@.....@@@....@.@@.@@@@@@.@@@@...@@.@@.@@.@@@@@@@@@.@@@@...@@.@.@@.@@@.@@ +..@@@.@@@.@@@..@@...@@@@@@@@@@.@.@@@@@...@@.@@@@@.@@@..@.@...@@.@@.@@.@@.@@@@@.@.@@@..@@@..@@.@.@..@@@..@@@@.@@@@@@...@@.@@.@.@..@@.@@@.@@@. +.@@@.@@@@@@.@@@@@@.@@.@..@.@@@..@@.@@@@.@@@.....@@.@@.@.@.@@@.@@..@@@@@@.@@.@@...@.@@@@@@@.@@@..@.@@..@@@@..@.@@@.@@@@@@@@@.@@@@.@@@@.@@@@@. +@@.@@@.@@@@.@@.@@@@.@@@..@@@@@@@.@...@@.@@..@@@@@.@@@@@@.@...@@.@@.@@@@@.@@@.@@@@@@..@.@@@@@@@@@.@@@.@@.@.@.@@@.....@..@@.@@.@@...@.@..@..@@ +.@@...@@@@.@@.@@@@@@@.....@@@@@@.@.@.@.@@@@@@@@...@.@.@.@@.@@.@.@.@@.@@@@.@@.@.@@@@@..@@@@...@@@@@.@@@@@.@..@@@.@@@@@..@@@@@@.@@@..@.@@...@. +@@@@@@@@@.@@@@@.@@@@..@.@@@@@@@....@@@@......@.@.@.@@@.@.@.@@@.@.@@.@@.@@@@.@@..@..@@@@@@.@@@.@@@@@@@@@@@@..@@@.@@...@..@.@.@.@..@@.@@.@@.@@ +@@....@@@...@@@@..@.@.@.@@@...@@@.....@@......@.@@.@@@..@@@@@@.@@...@.@@@@@@@@.@....@@..@...@.@@...@@@@@@..@@.@@.@@@.@.@@.@.@.@....@..@@.@@. +@.@...@@@..@@@@@@@@...@...@@@@.@@@@...@..@.@.@@.@@@@@.@@@@@.@@.@@.@..@@.@@..@@....@@.@@@@@.@@@@@@@..@@@@@..@.@@.@@@.@@.....@@@@.@.@.@@.@@@@@ +@@@@.@@..@.@.@....@@@@.@@.@@...@@..@@@@@@.@@.@..@@@@@.@@@..@@@.@@@..@@@@@@..@@..@@...@@@..@@@.@@.@@..@@.@@@@....@......@.@@@.@@@@@.@@.@@..@@ +@@@@@.@@.@@@@.@..@@..@...@@@@.@@..@@@@@.@@.@@@@@.......@@..@@@@@@@..@.@.@@.@@@@@@@.....@.@@@.@@@@@.@...@@.@@@@@.@@@.@@@@@@@.@@@.@...@.@.@... +.@@..@@.@@..@@@.@@..@@.@@@.@.@.@@@..@..@@@.@@@@@.@.@.@.@.@.@@@..@@..@@.@...@@@..@...@@@.@@@@.@@@@@...@@@..@.@@.@.@.@@.@@@@@@.@@@.@.@@.@.@.@@ +.@@...@@....@@@@@@.@....@@@@@.@.@.@@.@@@@.@.@@@@@.@@@@@@@@....@@@.@.@@...@@@@@.@@@@@@.@..@@.@@.@@@@@@@@..@@.@.@@@..@@@@@@@@.@@..@@@.@@@.@@.@ +.@.@@@.@@@.@.@@...@..@@@@@@...@@@@..@@@@@@@@.@.@@.@@@.@.@@@@..@.@@.@@@@@.@@@@@.@@@@..@@@@@@@@.@@.@@@.@..@@@@@.@@..@@..@.@@@@.@..@.@..@@..... +...@@..@@.@@@.@.@@@@@@@@@..@@@@@@..@.@@@@......@...@.@...@.@@@.@@....@@.....@@.@@..@..@@@@...@..@@..@@..@@.@.@@@.@.@.@@.@.@@.@..@@..@@..@@@@ +.@@@@@@@.@.@@@@@@@@.@@@@@@..@@....@.@@@@@...@@@@@.@.@.@@..@@@@@..@@@@@@@.@@.@@.@@@...@@.@.@@@@.@@@@@.....@..@.@@.@@.@.@..@@@.@.@.@..@@..@@@. +@@@@@@@@..@@.@@.@.@@@@@@.@@.@@@@@.@...@@@@...@.....@@@....@@.@@@@@@@..@@@.@@@@@....@@..@@.@@@@.@@.@@@@@@@.@...@@.@@@.@.@@@@@@.@...@...@@.@@. +@@.@.@@@..@@@.@.@@.@@@.@...@@..@@@.@.@.@@@.@.@...@@.@@@@@@@.@@.@@@@@..@@@@.@@@.@@@.@@@@@@@..@.@@.@@.@..@@@@@.@..@.@..@@@....@..@..@@@@.@@..@ +@.@@@.@@@.@...@@@.@@@@@@@.@@@.@...@.@@@@...@@@@@.@@@@@@@@@@..@@@@@.@@@@.@@@.@@.@@.@..@@.@@@@@.@@@.@@@@@.@@.@@@.@.@.@.@.@.@@@@...@..@@@@@..@@ +...@@@@@.@.@.@@@@......@..@.@@@@@@@.@@@@@@.@@@.@..@@@..@.@@@.@.@@@@@@@.@.@@@@..@@.@@@@@@@@@@..@@@@@@@@..@..@..@@@@...@@@..@..@.@@.@@.@.@.@@. +@...@.@@@.@@.@@..@@.@@...@@@.@.@@.@@@@.@..@@@@@@@@@.@.@@.@@@@@@.@@.@.@@..@@@..@@@@..@@....@.@@@.@@@..@@@.@..@@@@@@@@@@.@.@@@.@....@@@@.@@@.@ +@@@.@.@@@@@..@.@.@.@@.@..@@...@@@@..@@.@....@@.@.@@@@.@@.@@@.@@.@.@@.@.@.@.@@..@@..@@@@@@@@@.@@@@@@.@@@@@..@@.@@.@@@.@@.@.@@@@.@..@@.@@..... +.....@@@@@@..@@..@....@@@@@@@..@@@@..@.@.@.@@.@....@@@@@.@@...@..@@.@.@..@@@..@.@@@@...@@@.@@@@@@@@@@@@.@.@@@.@.@@@..@@@@.@.@@.@@@@....@@@@. +....@@.@.@.@@@..@@@.@@@@@@@@@.@..@.@.@@@.@...@@@@.@@.@.@@.@..@..@@@@@@@...@@@...@.@@.@@@@@@@..@@@@@@@.@@.@@@@@@.@....@.@@.@.@@.@@@@.@@@@...@ +.@@@.@@@@@@..@.@@@@.@@.@.@@@.@@@@@@@@.@@@@@@@@@@@.@@..@@@@@...@@@@@@@@@.@@@@@@@.@..@@@@@.@@@@@@@@@@@....@@@.@@@.@@@@@@.@@@.@@@.....@@@.@@@.@ +.....@@@@.@@.@..@@@@@@@@.@@@@.@@@@..@@@@.@@@..@.@@@.@@.@.@@.@@@@..@@@..@@@@@@...@@@.@..@@...@@@.@@@@@.@@..@..@.@@@@@.@@.@@.@..@....@@.@..@.@ +.@.@.@@.@@@.@@.@.@@@@@......@@@....@...@.@@@@..@@@..@.@.@@@.@.@@.@@@.@..@.@@@.@@...@.@@.@.@.@@@@@@..@@@@@@@.@@.@@@.@.@..@@@@..@@@.@@.@..@.@. +@.@.@@@@.@.....@@..@.@@@.@.@..@@@.@.@..@.@@@@@@@.@@@@@..@@..@@@@@.@@...@@.@@@.@@.@.@@@@@@@@@@@@...@@@.@@@@@.@@@@@@.@@.@@@@@@..@.@@@...@@@@.. +@@@@@.@.@.@.@@@@@@@.@.@@@@..@@@@.@@.@@...@@.@@...@@@.@@.@.@@@@@.@@@@@@@..@@@@@@..@@.@@.@.@@.@.@@@@@@@@.@@@@...@@..@@@.@..@..@@.@..@@@..@@@@. +.@.@.@.@@@@@@@@@.@@.@@.@@@.@@@@@..@.@..@@@.@@@..@@.@@.@@@....@@@@@....@@@@@.@@@@@@@@.@@.@..@@.@...@.@.@.@@..@@.@.@.@@@.@@.@@@@@..@@@.@@@@@.. +@@@.@@.@@@.@@@@@..@@@@.@@@.@@@@@.@@..@@.@.@..@@.@@.@@.@@..@@@@@@.@@@@@.@.@.@..@@@.@@@....@@.@@..@@@@@@@@@@.@.@@@@@@...@.@@..@@@@..@@@@.@.@@@ +.@@@..@@@.@.@@@@@@.@.@@@@.@@@@@@.@@@@@.@@@@@@.@@@@.@@.@@@@@@@@@@@@@@@@@@@.@@@..@@@@@@..@..@@.@@@@@@@..@....@@..@.@@.@@.@@..@@@.@.@@..@@..@@. +@@@.@.@@@@.@@@@@@.@@.@.@@..@@@..@@@..@.@.@.@@@@@@@@@@@@..@@@@@@@@@@@.@@@@@@..@.@@@@....@@@@@@...@@.@@@.@.@@@@.@.@.@@.@@@@@....@@@@..@@.@@@@@ +.@@@@@@@@@.@.@@.@.@.@@..@@@.@..@@@.@@@@@.@@@..@@@..@@@@@@@@@@@@.@@@.@@@@@@...@@.@@...@@@@.@....@..@@..@@.@@@.@@@.@..@.@@@@.@.@@@@.@....@@@@@ +@.@@.@@@@@.@@.@@@@@@@@@@..@@@@@@@@..@.@..@@@@.@.@.@@@@@@.@@@@@..@.@@@..@@@@.@@.@.@@@@.@.@@@@@@@@.@@@.@@@@@.@@@...@@@@....@.@@.@.@...@..@.@@@ +..@@...@@@@@@@.@.@@..@@@@@@@....@@.@@..@..@@@.@..@@.@.@@@@@@@@@@...@...@@@@@@@.@.@@@@@@.@....@@@@......@@@.@@...@@@@@@..@@@@@@@@@@.@@@@@@@.. +@@.@@..@@@@@@@@.@.@@.@@@.@.@@@@@@@.@@@@@@@.@@.@..@@@.@...@.@@@@...@..@@...@@@@@@.@@@@@.@@@..@@@@.@@@@@@...@@@.@.@..@..@@@@@.@.@.@.@@..@@@... +@@.@@@@.@.@.@@.@.@.@...@@@..@..@@@@@.@...@@@@.@.@@.@@..@@@..@@...@@@..@@@..@@@.@@.@.@.@.@.@@@@@..@@@@..@@@@@@..@@@@@@@@@@.@.@..@@@.@@@..@.@. +...@@@@@@@@@@@.@..@@...@@@@@@@@.@@@.@@@.@.@@@@.@@...@.@@..@@@@@..@.@@@..@.@@@@@.@..@@.@@@@@@@.@@@@@@@..@@@@.@...@.@@@@@@..@.@@@@@@@.@..@.@@. +..@@.@@@.@.@.@@@.@@.@.@.@@@.@@@@@@@.@@..@..@@@@@@@@.@@.@@@..@@..@@@@@.@@@@.@.@.@@@..@..@@...@...@@@@.....@@@.@.@.@..@.@@@@@@@@@@...@..@@@@@@ +@@...@@@@@@@@.@@@@.@.....@@@@@@@@.@@...@@@@@.@@@..@....@@....@.@@.@@@.@.@@@@@@..@...@..@@.@@@@@@@@@@@@@@...@@@@@@.@@@@@@@.@@.@.@@@.@@@@.@@@@ +@@@@...@@@@.@@.@...@@.@@@@..@@.@@.@@@@.@.@@..@@.@.@.@.@.@@@@....@..@@@@.@@@@@@@@@@@...@@.@.@.@@@@@@.....@@@@@@.@@@@@@.@.@..@@@@@.@...@@..@@@ +@..@.@@@...@@@@.@@@@@@.@@@.@.@@@..@...@.@@@@@.@.@@@@@@@@@@..@@@@..@@@.@@@@@@@@@@@@@@.@@@@@@@@@@@@..@@.@...@@.@@@..@@@@.@@@@@...@.@@@.@@..@@. +.@..@@..@..@@@@.@.@@.@@@@@.@@...@@@.@..@@@@@@@@..@..@@@@@@@.@@@@@@@@@@@.@@@@@@.@@..@@@@.@.@@.@@..@.@@@@.@@@.@@@@...@@@.@.@@@....@@@.@.@@@@@@ +@@@@.@.@.@@@@@@@@.@@@@@.@@...@@@@@.@@.@@...@@@@@@..@@@@@@@.@..@...@@@.@.@.@@@...@@@.@..@@.@@@@...@@@@@..@@..@@@.@@@.@.@.@@@@@@@@.@.@@@@@@@.. +.@@..@@..@@@@@@@@@@.@.@@@..@@@@@..@@.@@.@.@.@.@@@@.@@@@@@......@.@@@.@..@@....@.@.@@@@..@.@.@@@@@@@..@@@@..@@@@@.@@..@@.@.@@@.@..@.@@@@...@@ +.@.@@.@@@@@....@@@@...@@@@@.@@@.@.@@@@@@@...@.@@@@@@.@@@@@@.@@@@@.@..@.@@.@@..@.@...@@@.@..@@@..@..@.@...@@......@.@.@@@@@@..@@@@@@@.@@..@.@ +.@@.@@..@@@.....@.@@..@.@@@@.@.@@@@@.@@@@...@@@@.@.@...@.@@.@@.@......@.@@.@.@@..@@..@.@@@@.@@@.@..@.@@@@.@@@@.@@@@@@@@@.@@.@@.@@@@@@@@@@@.@ +@@@@.@@.@@@@.@@@..@@@@@@@@.@@@.@@@@@@@@@@....@@.@.@@.@@.@.@.@@@@.@@.@.@@@@..@@.@....@@@@@.@@.@@.@@.@.@@@@@@.@@@@@@@@..@.@...@@..@@@@..@@@@@@ +@.@.@..@@.@.@@@@.@@@.@@.@@...@@@@.@@.@.@@..@@..@@.@@.@.@.@@@@.@@.@..@@@@@@.....@@@.@.@@@@@@.@@@.@.@..@.@@@.@....@@@@@.@@@@.@@.@@@.@....@.@@. +@@.@.@@@.@@@.@@.@.@@@@@@@.@@.@@.@@.@.@.@..@@@@@@.@@@.@.@@@.@...@@@@@.@.@@.@.@...@@@@.@@.@@.@.....@.@@....@@.@..@@@@@@@@@.@.@@@@....@@@@.@.@@ +@@@@@.@.@.@..@.....@@@@@@.@.@..@.@.@@@..@@@@@@@@@@.@@.@@..@.@@@@@.@@@@@@@@@@..@@.@@@@.@@.@@.@@@.@@.@@@.@@@@.@@@.@@@.@.@@@@..@@@.@.@@@.@..@@@ +..@..@@@@@@@@....@@@...@@@@..@@...@@.@@@@@@....@.@@@@@@@..@@@@..@@@@@@.@@@.@.@@.@@@@@@@@@@...@.@.@@...@.@@@..@..@.@.@@@@@.@@.@@.@@....@@@.@@ +@@.@.@.@@@@@@..@@.@.@@.@@.@@@..@@@@@@@@.@.@@@@@@.@@.@@...@...@@..@..@@@@...@.@@@@.@@@@@.@@.@@@@@..@.@.@.@@.@@@@@.@@@.@@.@.@.@..@..@@.@@..@@@ +@@@@.@@@@..@.@@@@@@@@.@.@..@..@.@...@.@@@@@@@@.@@..@@@@@.@@@@.@...@.@.@@@@..@.@@@.@@@.@@..@@@@@..@@@@..@@@@@@@...@..@.@.@@.@@.@@.@@...@@@..@ +@@@.@@@@@@@@@.@@@@@.@@@@@@@@@@.@@@@.@@.@....@.@.@.@@@.@..@@.@@.@....@@.@@@...@.@..@.@@@@@.@@@@.@@.@@@@@@.@@@..@.@@..@@@.@@.@@@.@.@.@@@@.@@@@ +.@@@@@....@.@@@@@@@@..@.@@.@.@.@.@@.@@@...@.@@@@@@@..@@@.....@@....@@@@@.@@.@..@@@.@@@.@@.@@@@@@@...@.@..@@@@@@@@@@@@@@.@@@@@..@@@@..@@@@.@@ +@@@@@@@.@@@@.@@@@.@@.@@@.@..@@.@@@@@.@.@@@@@@.@..@.@.@...@@@..@.@...@.@@.@@@.@@...@@..@...@@@.@.@..@@@.@@@@@@@@@@.@.@..@@.@.@@@@@.@@@..@@@.. +@@@.@..@@@@@...@..@@@.@@@@.@@.@.@@@@@@..@@.@.@.@@.@@@@@@.@...@@@..@.@@@.@@@@@.@@@.@@@....@.@@.@.@@@@.@.@@@@.@@..@@@.@.@@.@@..@@@@@..@@@...@@ \ No newline at end of file diff --git a/day5/day5.odin b/day5/day5.odin new file mode 100644 index 0000000..18f448f --- /dev/null +++ b/day5/day5.odin @@ -0,0 +1,155 @@ +package main + +import "core:fmt" +import "core:log" +import "core:os" +import "core:strings" +import "core:strconv" +import "core:testing" + +sample :: `3-5 +10-14 +16-20 +12-18 + +1 +5 +8 +11 +17 +32` + +Range :: struct { + start: u64, + end: u64, +} + +parse_range :: proc(s: string) -> Range { + range: Range + delim_index := strings.index_rune(s, '-') + range.start, _ = strconv.parse_u64(s[:delim_index]) + range.end, _ = strconv.parse_u64(s[delim_index + 1:]) + return range +} + +solve_first :: proc(input: string) -> u64 { + input := input + fresh_ingredient_ids: [dynamic]Range + defer delete(fresh_ingredient_ids) + available_ingredient_ids: [dynamic]u64 + defer delete(available_ingredient_ids) + in_ranges := true + for line in strings.split_lines_iterator(&input) { + if line == "" { + in_ranges = false + } + if in_ranges { + range := parse_range(line) + append(&fresh_ingredient_ids, range) + } else { + val, _ := strconv.parse_u64(line) + append(&available_ingredient_ids, val) + } + } + + total_fresh: u64 + for id in available_ingredient_ids { + for range in fresh_ingredient_ids { + if range.start <= id && id <= range.end { + total_fresh += 1 + break + } + } + } + return total_fresh +} + +@(test) +solves_sample :: proc(^testing.T) { + total_fresh := solve_first(sample) + log.info("sample total fresh: %v", total_fresh) + assert(total_fresh == 3) +} + +@(test) +solves_input :: proc(^testing.T) { + content, _ := os.read_entire_file("day5input.txt") + defer delete(content) + total_fresh := solve_first(string(content)) + log.info("input total fresh: %v", total_fresh) + assert(total_fresh == 701) +} + +RangeResult :: struct { + range: Range, + primary: bool, + used: bool +} + +solve_second :: proc(input: string) -> u64 { + input := input + fresh_set: [dynamic]RangeResult + defer delete(fresh_set) + for line in strings.split_lines_iterator(&input) { + if line == "" { + break + } + + range := parse_range(line) + append(&fresh_set, RangeResult{ range=range }) + } + + for &rr, index in fresh_set { + r1 := rr + if rr.used do continue + rr.primary = true + + if index == len(fresh_set) - 1 { + continue + } + + increased := true + for increased { + increased = false + for &compare in fresh_set[index + 1:] { + if compare.used do continue + r := rr.range + r2 := compare + crr := compare.range + if (crr.start <= r.start && r.start <= crr.end) || + (crr.start <= r.end && r.end <= crr.end) || + (crr.start <= r.start && r.end <= crr.end) || + (r.start <= crr.start && crr.end <= r.end) { + rr.range.start = min(r.start, crr.start) + rr.range.end = max(r.end, crr.end) + compare.used = true + increased = true + } + } + } + } + + total: u64 + for rr in fresh_set { + if !rr.primary do continue + total += (rr.range.end - rr.range.start) + 1 + } + + return total +} + +@(test) +solves_second_sample :: proc(t: ^testing.T) { + fresh_count := solve_second(sample) + log.info("solves_second_sample count = %v", fresh_count) + testing.expect_value(t, fresh_count, 14) +} + +@(test) +solves_second_input :: proc(t: ^testing.T) { + content, _ := os.read_entire_file("day5input.txt") + defer delete(content) + fresh_count := solve_second(string(content)) + log.info("solves_second_input count = %v", fresh_count) + testing.expect_value(t, fresh_count, 352340558684863) +} diff --git a/day5/input.txt b/day5/input.txt new file mode 100644 index 0000000..116f94c --- /dev/null +++ b/day5/input.txt @@ -0,0 +1,1186 @@ +526859759527027-530903630595569 +337717265601364-339932517390269 +545089130701660-551315254037624 +265340758984424-265575034323910 +535666190180626-539145128075457 +386605490441654-388235518620336 +423385835903709-429362477775364 +385422312069308-387482365060968 +434044543571446-436862530762822 +74539175245033-74965026800509 +44742834774095-49788566839375 +169325580980735-169325580980735 +51096063282052-58069810607487 +413831533189103-418855927945058 +345108105344543-345108105344543 +152972771418166-157847734707755 +473542571141034-473542571141034 +163332456696368-169325580980734 +212003517607639-214869625712644 +449422525487063-450200051002750 +261670526650013-262440699650690 +74741731842149-75516371691095 +330696283998213-331441633999421 +155332627201732-157847734707755 +221424275196848-226582162731252 +185110300693630-187480772832070 +61259034661183-66300828124476 +387682788292227-389423736589549 +172627015874313-172627015874313 +328351285395449-329186851393270 +76935545176649-77246349234441 +447679536351056-448300285004653 +445931407503662-446738636362543 +74741731842149-74965026800509 +325030752126721-325307177049343 +51096063282052-58069810607487 +268721591471779-269567971629259 +325307177049343-326079640025058 +143950356130919-150045971248704 +74965026800509-75282791772663 +389897253020406-391705775049295 +115257626485094-119825119608074 +262440699650690-263258821311777 +303326443780325-309778019953555 +324006623088441-324803214222802 +214869625712645-219687352009875 +74741731842149-75516371691095 +486023914936757-488383792976889 +255699980018513-258638065060368 +244144300283045-250254757936557 +447054779884888-447679536351056 +138623035943557-140532733682903 +495128475253867-499627639192062 +137109076099544-139192904222278 +84823805692192-84823805692192 +76184775908061-76526569575995 +328573162315353-329186851393270 +78975410069823-79297309342198 +203999107078355-209959476084522 +71048133574867-71224981434097 +326079640025058-326492203266235 +264205992279007-264777158310814 +78975410069823-79297309342198 +266806993504195-267617703756286 +41435986472992-49788566839375 +328351285395449-328757544594044 +514473766850364-522190439991386 +134886241737792-136876939866215 +445048023282396-445422366122154 +74086643854183-74201106808166 +447432062609659-448300285004653 +123299276583068-129191624367722 +104553001600323-108264011748468 +384648243704164-386134193460852 +373065356805237-379036834653996 +314569442718959-320690039031516 +182474871809317-190357924983170 +261969441682143-262724659026248 +326825319523574-327111177200274 +323792484896236-324564823916166 +298104594330519-298104594330519 +264205992279007-264988203098396 +556449139785432-560985248309694 +364605116527462-369636344155803 +131169731336234-133070929279775 +473542571141034-480117303920638 +133294646120336-135548956899024 +447432062609659-447679536351056 +267617703756286-268210926825714 +388982779453909-390666196636237 +505888731224463-509395631718812 +324291684030447-324564823916166 +354840910211902-354840910211902 +439498119985012-441599388338418 +395764878304186-398546022034136 +78125231572360-78438080522025 +233178547149952-235392211723458 +286209479232129-290909979710873 +92901806075037-94370211494480 +269746707446841-270234297073801 +314569442718959-320690039031516 +403593165069019-406618284406689 +264777158310814-265340758984424 +265818866337594-266173551138968 +514473766850364-522190439991386 +445422366122154-446271702604406 +261504223942745-261670526650013 +282155152581726-290909979710873 +92901806075037-98353857372767 +876959427385-6095613039337 +66300828124476-66300828124476 +263258821311777-263676106541399 +238975774736713-240656006363157 +467693150640920-471889906803212 +84823805692193-89778326071387 +193046801974199-195253899078724 +453499176096814-459167269547006 +266806993504195-266989657357129 +235691954395235-238191029089354 +450638449273608-451258272106192 +73728752882731-74539175245033 +73213232189848-73728752882731 +231343953590244-233647858318470 +505888731224462-505888731224462 +334245722489446-337717265601362 +321979107816896-322237339538591 +267843115061924-268048354630500 +382108200796202-383795987338234 +264553989145130-264988203098396 +203999107078355-204981053333115 +225543169935325-230621450714858 +150045971248704-150045971248704 +303326443780325-307566456021470 +20823869782492-24242219350925 +484555826473307-490671592155327 +123299276583068-123299276583068 +234704202249576-236633431964463 +445726395953078-446271702604406 +322479352862291-323094367137729 +237052415716315-239630973612728 +6095613039338-8344216900761 +78975410069823-79603858391383 +77246349234441-77857012518728 +24242219350927-27302014389310 +432578376622242-435100617624369 +270076811269101-270234297073801 +406618284406690-410155078190630 +73213232189848-73599406441595 +11931341791595-19096571173991 +272544678526630-272544678526630 +464682877110249-467693150640919 +437767002432237-440318677568155 +13338172612994-17035003871112 +459167269547006-459167269547006 +345108105344543-349593319406890 +495128475253867-497702389322273 +111530580288200-116611338253415 +323307649883441-323481330026974 +383576464093848-385269089618536 +323094367137729-323307649883441 +354840910211903-358907736018584 +132288517885616-133920930183998 +77546108821305-77857012518728 +195253899078726-198269026577572 +272544678526630-280444084418547 +267843115061924-268472056678149 +327294753606500-327791538574437 +376256304367713-381180338444018 +244144300283045-250254757936557 +76935545176649-77546108821305 +38493578143191-38493578143191 +32443494862657-38493578143190 +548542430017005-551315254037624 +136223761063811-138130914347965 +426116260725312-431745276529134 +443262168910577-443389872554598 +392926261978689-401728376263719 +418855927945058-418855927945058 +539145128075459-540094781235090 +329395527364410-329630251416021 +560985248309695-560985248309695 +172627015874314-178533696643087 +449933231063294-450638449273608 +295448358471196-298104594330518 +436168534750376-438504463596282 + +180086939927003 +40733628163329 +127074402685910 +217586853716193 +398704644604332 +356494447362786 +55798379556191 +550279657988313 +274408711733777 +209693154684097 +339144099251985 +97440925981534 +480626159274469 +278292443214607 +252722568845779 +243767583482572 +216287310134190 +537852062799782 +97366057428139 +68641963659766 +393265591015044 +447471031129666 +432291285204556 +406414985871864 +355963323979281 +404663640199906 +504230519964806 +496970724520833 +297401754415977 +397401227187795 +15134505081919 +236078765468439 +464082394921719 +316016931121348 +385207894673937 +311824547384981 +46896807010428 +557150998624511 +21672517591943 +442250656828104 +112735871434295 +407244153990437 +48947182190562 +449812853075269 +383825115677289 +264821764505609 +540018784889011 +487670117561172 +202610310184536 +302076269169964 +490660955645510 +84429515071984 +321793876995185 +448454628948493 +162436685409090 +169290200565465 +366016156718271 +371723487136841 +240302930577789 +479322113445420 +130116852509746 +470729675232859 +10773402609144 +83155972455713 +327196871819358 +314278104508 +464719809632993 +231737586190946 +100064058223931 +91292648897161 +68151081287212 +322927901015629 +85308656847270 +74061872176478 +241262760633204 +364747488291568 +497050259671788 +165440513696719 +493667459801350 +32804038430674 +176653825104804 +342256963642872 +424750157870467 +305743477088069 +380313213527829 +139925750335408 +7461195993769 +451250559477352 +355922555905590 +405612102334636 +44528394492760 +486957961131686 +5933057683885 +100890561017385 +36553895537687 +275658301762969 +102982933248926 +460833339483075 +365390254232828 +200388222368788 +4080828331986 +453466965321318 +311793272572799 +201185924307180 +110158483491123 +1926672532549 +88256278625614 +490140997772694 +439925005382430 +496539292663706 +499842873039684 +335118376912826 +472405052778201 +427150179960111 +187678898669475 +471752215052541 +98249204784658 +334287444083834 +481471870229193 +536247802371093 +515810391880761 +475143690867391 +36095672271415 +468986235724185 +207645454601193 +58216209383010 +306408560416530 +332589331296960 +344815948663466 +253225342483131 +192379324508022 +205041867209064 +42182574152729 +21783753249598 +243961245401837 +264628010033765 +226885883598640 +266918768448957 +57224804162118 +470023018336599 +125888632255425 +16062898046406 +338504131940327 +157084812913240 +73996690370233 +288865138243624 +138035654637621 +272920703015545 +317086120013178 +113501778662642 +492897689067663 +322641147836653 +319864910460553 +480781443736573 +269637135603857 +19031496902059 +104412970391443 +305677366811019 +216018963784371 +318783957000926 +269153130376418 +208660229216921 +525937290835806 +296391647922961 +461897113603834 +468974553507268 +392709654411183 +271482424434166 +107822694948785 +233931207952267 +150956071945987 +190880503739708 +476479640765129 +336453689669561 +315960938270733 +194895369816294 +238499629495861 +196887899839442 +510576176857915 +125188646300178 +344979241793090 +377661323597976 +356160748979813 +425903995573918 +189968374992773 +375068442365904 +415726984077665 +354282606362586 +193460494603986 +446961584207735 +389775552480432 +232795466471337 +36382469671660 +182282701880162 +505492835610788 +452646628239264 +401458016995133 +508290808439968 +415747466026244 +384395577917739 +351233804310207 +364880083078296 +513967955037700 +20321477222489 +372164351787784 +416386698128982 +182577131996738 +127682621762625 +289956379701465 +371283155949534 +404854234024016 +80415552557262 +513922946136157 +394143635541241 +97379157037763 +390362637630909 +508183524782149 +329103619884086 +548408280771332 +256976346360116 +334606065828286 +159508290235467 +108458743365086 +172935960365513 +405068523514464 +441137400892079 +166223946926991 +455418916354801 +71763333526910 +388172378401588 +222216028630112 +254197755195057 +365278381119332 +138279663950053 +427149938880560 +390972387177297 +498081804859514 +510501994428487 +113477785982841 +297373701992651 +399252710002906 +52317657036596 +88244630234437 +511531627540280 +351157941636556 +44071635792815 +88178418330474 +351444776477382 +64031006790331 +407375720380188 +85431660279218 +283448267491404 +470567594397631 +12636398260894 +496062089407800 +335300891346675 +14055755804652 +164636123386073 +223877317160898 +170978066269005 +471856700196669 +540230479905012 +310439796893537 +333603311532803 +277015260057498 +207343947632463 +356544289982032 +356589813431144 +561782960471036 +291088456475038 +397579412826113 +73481064724752 +318414494788701 +539225404513089 +416899640225817 +245851600187476 +46796031802508 +339062912172552 +394207101712733 +260747750827868 +473629840171145 +351912516097164 +123589994740127 +186907301836207 +286729677369778 +37549201798281 +17470202280935 +324008087498039 +28454390517097 +42958294070835 +86472566616497 +285952329758217 +104971942324544 +147576989817511 +358087587002657 +225588592614262 +282868513667956 +117539567599020 +262997073550997 +224921435272795 +56097045692082 +182334973498595 +268636867533238 +213241752611361 +35757095442060 +373599637831268 +393340791925669 +378902095568044 +71539490173739 +231636410582895 +52772639211549 +49512673765901 +354756188152540 +272872696183026 +148256578522734 +98357021715820 +379213466071122 +144485326474670 +326853216054389 +24302452049437 +368926552885022 +53157699426161 +223252757973208 +145768883269011 +63984466333448 +486488620866874 +229817765192291 +269329133914365 +560643946706657 +45631044212263 +435881451766287 +475506642028082 +484449661040771 +214879754728988 +475846503322504 +315021216693226 +121670524069030 +255869768870221 +551487586837792 +99151888673216 +216938746148020 +428208979764630 +355861765404303 +96567936950185 +73763280873931 +543532495179726 +504883610624906 +168104688076724 +299886219816730 +468688264606576 +51114038718439 +73232826595794 +560844106555924 +528187755269791 +405013284368940 +372272743540676 +510872843752361 +308956286619773 +108062811221199 +492737062954364 +87057682265211 +409574090984899 +297195784398408 +405819403388680 +397019663959028 +300340029883062 +140447096833460 +148860660078177 +138549628180799 +266521107265976 +62119873645612 +201426183100004 +245373109201316 +179156417536913 +233000961331062 +468317772850143 +104622408121681 +462268888334062 +266897639279911 +232122415377959 +399358507065697 +519715462820253 +537396644402202 +315342672824150 +17458516392420 +476516458648077 +542175192198795 +114684671476813 +294329658000003 +230065183778063 +11091313673529 +252982912198070 +457714398481216 +93261338735878 +419352128964825 +287241947869771 +347394448186685 +544339173877131 +154642223944071 +451881260577833 +498485484833025 +70269541369073 +389531747729764 +247623970417555 +278090222984930 +495260232380161 +1796658906391 +89909721194190 +44414193344340 +428867954231103 +380723851620857 +125779928073442 +143830854096433 +74985740515683 +26081441166565 +391430367095056 +2315403381146 +170049626270324 +29933592120839 +367210956340849 +487503370733624 +149556625637249 +71474550901116 +58532624335778 +391512285425179 +1976901800262 +365889209823392 +352493835513713 +538489397266924 +391774502228528 +107912308788051 +297284817649478 +524395646656730 +105804016214167 +425102022387743 +248126689238251 +12845836680112 +401354058916741 +422650816362899 +448782811603402 +450130863961451 +28444510039950 +439928408892220 +386969510790166 +413003563168209 +189357377211129 +266329397244920 +306678868252396 +202556358297386 +29197822918375 +523404118798372 +514743187095168 +109997483844012 +444168000082978 +51166010972968 +105937953336595 +493949593382735 +497606938014892 +425274716592484 +199692749300840 +295581329555282 +548691682594286 +507348624412331 +147988690058545 +15385149104033 +133587454071326 +470561709300533 +408741972703238 +536139981367946 +115860804701381 +35046443317617 +41800912894466 +135940824218968 +561205866469050 +53019107389618 +224330451603974 +155638610646722 +466598740604004 +206782537834746 +75044288942928 +373159599320624 +556466715599520 +435487900673746 +27792055641968 +122834568000287 +537474343030525 +97802812515795 +450343142972945 +406573689125472 +389951127448389 +197610762414973 +419637881694753 +498280691598791 +401671850069432 +416275367018246 +311125592481373 +448194800639308 +489976726106726 +523570949348042 +517499967610276 +189958183415769 +327459021894553 +466244510126665 +111211836540661 +157230149001111 +87844291927566 +467904235011676 +80287823062198 +348861419302428 +491111164669109 +389634766805643 +314295169605756 +276368235090753 +495545722734527 +67902381745435 +242115525859709 +114111724934298 +469500569192573 +320310192296601 +29874628168249 +491145530220945 +461756560074159 +553178608998745 +257734948035978 +410595241312785 +47014118517108 +85887090927583 +168008245034474 +341699174288167 +62700190440509 +80514439015283 +262923637938809 +476828597930447 +117114975894028 +141222099047454 +213204262431176 +333731934015430 +547513919069064 +432228236551047 +305006291038386 +23195912037758 +111397501301462 +265721678156741 +334171411462080 +328138987648478 +285083913080604 +372627917438197 +436551595277855 +261238865832227 +256628805176352 +140082131903517 +430800747432808 +512384762440519 +305719969048839 +81247377799428 +404573325829238 +539347735333761 +55017328954120 +524392377584400 +558742929293152 +214036268285596 +335479954861711 +231656277609897 +7356249988889 +561623815119105 +204561728469306 +89753385986841 +241061871502465 +237331073489731 +209306400300127 +535886920906910 +487863077175940 +279121387728077 +304305988746903 +256162355457343 +124968497527425 +208203466427061 +308440444743475 +19610416937958 +82096714517257 +14107085919654 +264268258409850 +127565107963024 +440773901472531 +350403652454580 +352643089656417 +164841031250705 +139847058224221 +278831480111407 +401211216619670 +65054043908274 +228513486826986 +39994922207692 +202498504718872 +140341941042160 +498121444613583 +291672881707627 +58697149761687 +344525598776893 +81130372666807 +393547263272272 +3789912822292 +418422907550720 +454058564750427 +240302028252160 +293302067224320 +274531171223584 +546379445036220 +99494919728600 +147698005671861 +338330908139322 +268425682 +287578643357117 +468024632486301 +1816285813150 +308030898367180 +251650939718762 +344641184499443 +133702415687140 +400921497919075 +333647393238043 +252744477120170 +372208108718382 +21365751173033 +143828821745143 +436983133092760 +468087228202584 +497577347573258 +235500891763763 +428017817091875 +252795264586170 +478543689651637 +456037400020679 +141824643881688 +68748876525538 +120140200506043 +348178477121189 +258994892233713 +193403186964410 +231854878431912 +53510633081725 +198180536678162 +230390743437557 +246617871909615 +183589896313267 +484597717883139 +143225710304927 +54167565379231 +511414600938862 +228988732791474 +27674422139098 +179291144397234 +377265148166115 +13532278947565 +521274655831987 +388001790570464 +438894502063575 +273062236780603 +83830966026115 +212989031631302 +350674866851047 +24130970012051 +507265333414265 +154175197477995 +185364321937177 +4609352773689 +517398478602970 +82818484137481 +277591046695574 +44287729879953 +457350026885455 +477224454580729 +349699412221202 +495588116948996 +427728136357579 +485422157950167 +115091596893505 +517405238722489 +477878270245154 +150982170853767 +15745676947658 +307834164716645 +80887801161752 +61518634037382 +371430898086257 +229176782230688 +465358051562534 +277019731174471 +277534618999980 +209677664137437 +346840032096922 +485948859148338 +423782591352969 +400402208725589 +435850482049640 +45890360146169 +523536273395980 +547577878933842 +517943758115732 +247190325521228 +357513584347323 +460115775503864 +355852926204443 +67964287801538 +278040201494 +498273850881043 +154239702440239 +535041740810168 +294175991065965 +279854237234858 +513000861416579 +143484521851692 +34999110268861 +537458097463203 +545266248693058 +13318842537326 +386358298599072 +372898912263453 +126336514695165 +255551598453509 +32432309491596 +481393597450957 +334570437875806 +505941580319968 +457957769698147 +329400996863322 +191363605131452 +501454830691944 +524452742692657 +271212520287799 +548386690030504 +346659530451873 +238821056708012 +336686042021894 +350443484209819 +473549644540709 +285863611902687 +37592842807602 +167590746559381 +415190814396302 +52981196872491 +73789428457346 +293945623342186 +400780474996595 +354720897094398 +266513513445365 +217015534815445 +506007129236809 +450766747443141 +557346445572566 +510327000875385 +210995792215490 +416687170853167 +219020000161186 +479109065506436 +397687015924712 +534138532235602 +348174826069768 +231441063620699 +42293332775269 +93646079750283 +225680439325933 +342677060717478 +27245124029826 +312456863798154 +326360933765079 +469692952777048 +254256860361771 +454813530541875 +504035021904460 +511900155566299 +211499411846255 +511521614711544 +36386039988022 +534096847922224 +164413297902242 +159343618718330 +258029063159215 +437269810042783 +268373053969492 +325998335971995 +468458951961072 +179703166014808 +313365884139441 +313083790979262 +193620469472245 +416506390869415 +373339050083468 +343363703864687 +53526524106325 +387499216558418 +561179613103339 +257417109060083 +384378935731967 +259422559802147 +429905144459475 +258643662387418 +389222246908817 +263517350845879 +453937759418803 +37778276716748 +513008756665626 +47744308650085 +72225912946602 +335033484514564 +109358377329870 +274271410684417 +98987811426473 +427785248003421 +505108463745133 +94890528749850 +85482210472326 +257617311247582 +234500343774189 +298557256373367 +269553028007764 +437386629039591 +34049405175385 +280909249965498 +278172877045295 +522761683454472 +353043325834797 +225240832000354 +77815930355179 +387217542415370 +64989212096061 +12594033194625 +213884386374569 +240213835231068 +153861873431163 +57569934674978 +446590726269302 +109133190581458 +218651021007652 +520593832405909 +529673094813230 +377613481683180 +237987639594252 +497617024214549 +75784201932327 +136357910446594 +178327812587675 +170980318576778 +435414631244579 +221855535528452 +429078280942811 +492540191951421 +440170260411480 +76060919802154 +549965409083598 +338425874890873 +85795169052947 +207356499258773 +278120521395403 +247594159938387 +135243798100281 +550956896476703 +116716066708954 +331192599215256 +260648357770142 +115615214687780 +117401495808973 +376369482247324 +145333479071461 +1414611182801 +95074443822755 +196506711870068 +174050849202895 +432208804254188 +403906088119479 +400062051099988 +265062558440660 +181485227552435 +524309707544026 +456992094785645 +82947861376917 +63729789353186 +87651241066164 +419322996216513 +188379976369587 +188441800595011 +168454855929888 +134933364832248 +417796185066108 +70158938020125 +192658609384576 +286646464479316 +141857464509376 +197659399787323 +500999862977777 +487920295904169 +184242067840507 +377309313988629 +67704625461259 +149589975190867 +441052235080832 +454423066826598 +468528553432709 +534338905893316 +560008113182954 +354429247051444 +510821695195714 +21554209059567 +458668694329716 +156134642951289 +217769843850073 +470706147166448 +183763316419477 +70077041320007 +355093316160801 +121486272615081 +547267635716380 +53318326766490 +260729929168281 +545576265282933 +65844763856147 +475026964237242 +109427025448913 +100761937438852 +457030011955175 +282942161911251 +409575749035558 +230157170575100 +80148446075288 +133083206674327 +140801002500583 +85465169672254 +280954589756357 +382382209764158 +109942047467470 +435868451014802 +376553056402967 +381044666308508 +167482956588471 +224824597412949 +259543380160025 +293545755607973 +416718645649769 +425590696076147 +524050409010057 +518634517631409 +297544921235547 +426163989813382 +164948447883169 +335003186330089 +182947234060910 +515788879091642 +352693548735196 +74385677442718 +1023027994873 +431188950493408 +304241614716768 +311764246401322 +548578754870822 +463917966270522 +430227492769034 +110880337159623 +399600058149199 +253745908151743 +36331897370369 +223700273656749 +293280192213807 +164692838787103 +237296277515680 +153355145499145 +286522715028754 +275280254471957 +509443240490063 +147311084770444 +105422877567174 +358194918163054 +325188906906586 +275644237431946 +547480980775980 +482850952821991 +547262955041986 +24416126976153 +280646938956566 +25845750009615 +370326866522758 +522675849586166 +225744812319755 +240614018076188 +30136068209847 +479461007161497 +499264400524064 +515288973196098 +165580583437830 +88279198022661 +63763897431232 +408826166062805 +527208080502853 +459584741797532 +436480083996508 +262192945917036 +315046791298056 +452113241311054 +83892878322667 +259995284341805 +15072832010637 \ No newline at end of file diff --git a/utils/utils.odin b/utils/utils.odin new file mode 100644 index 0000000..8d99c36 --- /dev/null +++ b/utils/utils.odin @@ -0,0 +1,8 @@ +package utils + +import "core:os" + +read_file :: proc(s: string) -> string { + contents, _ := os.read_entire_file(s) + return string(contents) +}