-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path25.tcl
executable file
·81 lines (79 loc) · 2.01 KB
/
25.tcl
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
#!/usr/bin/env tclsh
proc aoc_25 { } {
set result [list]
set data [aoc_read "25.data"]
parse $data
lappend result [part1]
return $result
}
# --------------------------------------------------------------------
proc part1 { } {
global keys locks
set count 0
foreach lock $locks {
foreach key $keys {
set match [compare $key $lock]
# puts "Lock ($lock) and key ($key) do $match"
if {$match} {
incr count
}
}
}
return $count
}
proc compare { key lock } {
foreach k $key l $lock {
if {($k + $l) > 5} {
return 0
}
}
return 1
}
proc parse { data } {
global keys locks
set type {}
foreach line [split "$data\n" "\n"] {
if {$type eq ""} {
if {$line eq "#####"} {
set type "lock"
set sch {-1 -1 -1 -1 -1}
set char "."
set yPos 0
set yDif 1
} elseif {$line eq "....."} {
set type "key"
set sch {-1 -1 -1 -1 -1}
set char "#"
set yPos 5
set yDif -1
}
} elseif {$yPos >= 0 && $yPos <= 5} {
set xPos 0
foreach c [split $line ""] {
set v [lindex $sch $xPos]
if {$v eq "-1" && $c eq $char} {
lset sch $xPos $yPos
}
incr xPos
}
incr yPos $yDif
} elseif {$type eq "lock"} {
# puts "Lock: $sch"
lappend locks $sch
set type ""
} elseif {$type eq "key"} {
# puts "Key: $sch"
lappend keys $sch
set type ""
} else {
set type ""
}
}
}
# --------------------------------------------------------------------
if {[file tail $argv0] eq [file tail [info script]]} {
source "rd.tcl"
# Example results: 3
# My results: 3057
puts [aoc_25]
}