Sinking Ship Network Topology

Par 6
Question 91intermediateSheet 1750822302

Deep Breath

A cruise ship's network infrastructure is failing as compartments flood sequentially. Network routes must be dynamically reconfigured as servers literally go underwater. The system prioritizes passenger communication and emergency services over crew Netflix access. Maintain network connectivity while the physical infrastructure sinks beneath the waves. The system must implement emergency protocols while gracefully degrading non-essential services. Your task: Keep the Wi-Fi alive as the ship goes Titanic—cutting off Netflix to the crew while streaming SOS in 4K to panicking influencers.

Why You're Doing This

This tests network resilience, dynamic routing, and priority-based resource allocation under catastrophic failure conditions. You're building a system that must maintain critical functionality while systematically losing infrastructure.

Take the W

  • Maintains emergency communications as long as possible
  • Prioritizes passenger safety over non-essential services
  • Gracefully degrades network capabilities as infrastructure is lost

Hard L

  • Loses emergency communications while maintaining entertainment
  • Fails to reconfigure as infrastructure becomes unavailable
  • Ignores flooding progression in network planning

Edge Cases

  • Bridge flooding before passenger areas
  • Equipment failing faster than flooding timeline
  • Passenger panic overwhelming communication channels
  • Rescue coordination requiring specific network configurations
Input Format:
network_state object with flooding and equipment arrays
Expected Output:
reconfiguration_plan with priority_mapping and timeline
Example:
{"flooding":["deck_1:submerged","deck_2:taking_water"],"equipment":["router:lost","switch:dying","bridge:operational"]} → {"topology":"bridge_star","emergency":"prioritized","timeline":"30_minutes","crew_entertainment":"suspended"}
Hints
  • 💡 Flooding progression: dry → taking_water → submerged → equipment_lost
  • 💡 Priority services: emergency_calls > passenger_updates > crew_communications > entertainment
  • 💡 Plan for complete infrastructure loss