Skip to main content

Room

Struct Room 

Source
struct Room {
    packed: u16,
}
Expand description

Pack the room state into only 2 bytes.

We use 3 bits for each amphipod plus a marker bit for a maximum of 13 bits. The room is a stack with the amphipod closest to the hallway in the least significant position.

The marker bit is used to determine how full a room is and to disambiguate empty from the A type.

Some example rooms:

  • Empty room 0000000000000001
  • Room with two As 0000000001000000
  • Room with ABCD where A is closest to hallway 0001011010001000

Fields§

§packed: u16

Implementations§

Source§

impl Room

Source

fn new(spaces: [usize; 4]) -> Self

Pack state into a compact u16 representation.

Source

fn size(self) -> usize

The marker bit is always in the most significant position, so can be used to find out the size of a room.

Source

fn peek(self) -> Option<usize>

Find the type of an amphipod closest to the hallway.

Source

fn pop(&mut self) -> usize

Remove the top amphipod.

Source

fn open(self, kind: usize) -> bool

A room is “open” if amphipods of that type can move to it. This means that it must be empty or only already contain amphipods of that type.

We use a multiplication by a constant to figure out the bit pattern. For example, a room with three Bs would have a bit pattern of 0000001001001001 which is the marker bit plus B << 6 + B << 3 + B << 0 = B × 64 + B × 8 + B = B × 73.

Source

fn push(&mut self, kind: usize)

Return an amphipod to the correct room.

Source

fn spaces(self, index: usize) -> usize

Returns the amphipod at a specific index from the bottom of the burrow. 0 is the bottom amphipod furthest from the hallway, 1 the next closest and so on.

Trait Implementations§

Source§

impl Clone for Room

Source§

fn clone(&self) -> Room

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Room

Source§

impl Eq for Room

Source§

impl Hash for Room

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Room

Source§

fn eq(&self, other: &Room) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Room

Auto Trait Implementations§

§

impl Freeze for Room

§

impl RefUnwindSafe for Room

§

impl Send for Room

§

impl Sync for Room

§

impl Unpin for Room

§

impl UnsafeUnpin for Room

§

impl UnwindSafe for Room

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.