-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday23.txt
66 lines (51 loc) · 3.28 KB
/
day23.txt
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
--- Day 23: Category Six ---
The droids have finished repairing as much of the ship as they can. Their
report indicates that this was a Category 6 disaster - not because it was that
bad, but because it destroyed the stockpile of Category 6 network cables as
well as most of the ship's network infrastructure.
You'll need to rebuild the network from scratch.
The computers on the network are standard Intcode computers that communicate by
sending packets to each other. There are 50 of them in total, each running a
copy of the same Network Interface Controller (NIC) software (your puzzle
input). The computers have network addresses 0 through 49; when each computer
boots up, it will request its network address via a single input instruction.
Be sure to give each computer a unique network address.
Once a computer has received its network address, it will begin doing work and
communicating over the network by sending and receiving packets. All packets
contain two values named X and Y. Packets sent to a computer are queued by the
recipient and read in the order they are received.
To send a packet to another computer, the NIC will use three output
instructions that provide the destination address of the packet followed by its
X and Y values. For example, three output instructions that provide the values
10, 20, 30 would send a packet with X=20 and Y=30 to the computer with address
10.
To receive a packet from another computer, the NIC will use an input
instruction. If the incoming packet queue is empty, provide -1. Otherwise,
provide the X value of the next packet; the computer will then use a second
input instruction to receive the Y value for the same packet. Once both values
of the packet are read in this way, the packet is removed from the queue.
Note that these input and output instructions never block. Specifically, output
instructions do not wait for the sent packet to be received - the computer
might send multiple packets before receiving any. Similarly, input instructions
do not wait for a packet to arrive - if no packet is waiting, input
instructions should receive -1.
Boot up all 50 computers and attach them to your network. What is the Y value
of the first packet sent to address 255?
--- Part Two ---
Packets sent to address 255 are handled by a device called a NAT (Not Always
Transmitting). The NAT is responsible for managing power consumption of the
network by blocking certain packets and watching for idle periods in the
computers.
If a packet would be sent to address 255, the NAT receives it instead. The NAT
remembers only the last packet it receives; that is, the data in each packet it
receives overwrites the NAT's packet memory with the new packet's X and Y
values.
The NAT also monitors all computers on the network. If all computers have empty
incoming packet queues and are continuously trying to receive packets without
sending packets, the network is considered idle.
Once the network is idle, the NAT sends only the last packet it received to
address 0; this will cause the computers on the network to resume activity. In
this way, the NAT can throttle power consumption of the network when the ship
needs power in other areas.
Monitor packets released to the computer at address 0 by the NAT. What is the
first Y value delivered by the NAT to the computer at address 0 twice in a row?