-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask_8_part_1_and_2.ps1
126 lines (97 loc) · 3.76 KB
/
task_8_part_1_and_2.ps1
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
#------------------------------Notes------------------------------------#
# Task 8, Part 1 and 2
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
$folderRoot = Split-Path $MyInvocation.MyCommand.Source
$taskInput = Get-Content -Path (Join-Path $folderRoot "inputs\input_8.txt")
$inputLength = $taskInput.Length
$inputWidth = $taskInput[0].Length
$horizontalArray = New-Object string[] $inputLength
$verticalArray = New-Object string[] $inputWidth
$lineNr = 0
$howManyVisible = 0
$highestScenicScore = 0
foreach($line in $taskInput) {
#------------------------------Notes------------------------------------#
# Fill two arrays, one with the vertical numbers and one with
# the horizontal numbers
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
$horizontalArray[$lineNr] = $line
$charNr = 0
foreach($char in $line.ToCharArray()) {
$verticalArray[$charNr] += [string] $char
$charNr++
}
$lineNr++
}
for($rowNr=0;$rowNr -lt $inputLength;$rowNr++) {
:colLoop for($colNr=0;$colNr -lt $inputWidth;$colNr++){
#------------------------------Notes------------------------------------#
# Check every column of every row against the two arrays we created
# earlier. Start with eliminating the outer rows/columns.
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
if($rowNr -eq 0) {
$howManyVisible++
continue colLoop
}
if($rowNr -eq ($inputLength - 1)) {
$howManyVisible++
continue colLoop
}
if($colNr -eq 0) {
$howManyVisible++
continue colLoop
}
if($colNr -eq ($inputWidth - 1)) {
$howManyVisible++
continue colLoop
}
$arrWest = $horizontalArray[$rowNr][0..($colNr - 1)]
$arrEast = $horizontalArray[$rowNr][($colNr + 1)..$inputWidth]
$arrNorth = $verticalArray[$colNr][0..($rowNr - 1)]
$arrSouth = $verticalArray[$colNr][($rowNr + 1)..$inputLength]
[System.Array]::Reverse($arrWest)
[System.Array]::Reverse($arrNorth)
$checkArrays = @(
#------------------------------Notes------------------------------------#
# Ranges of numbers to the left or right of our current position
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
,$arrWest
,$arrEast
,$arrNorth
,$arrSouth
)
$visibilityArray = @()
$multiplyList = @()
foreach($checkArray in $checkArrays) {
#------------------------------Notes------------------------------------#
# Check the current number against the ranges.
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
$treeVisible = $true
$multiplyBy = 0
foreach($nr in $checkArray) {
$multiplyBy++
if($nr -ge $horizontalArray[$rowNr][$colNr]) {
$treeVisible = $false
break
}
}
$visibilityArray += $treeVisible
$multiplyList += $multiplyBy
}
$scenicScore = 1
foreach($nr in $multiplyList) {
$scenicScore *= $nr
}
if($scenicScore -gt $highestScenicScore) {
$highestScenicScore = $scenicScore
}
foreach($visibility in $visibilityArray) {
if($visibility) {
$howManyVisible++
continue colLoop
}
}
}
}
Write-Host ('Task 8, Part 1: {0}' -f $howManyVisible)
Write-Host ('Task 8, Part 2: {0}' -f $highestScenicScore)