2016 Jan Platinum Problem 3 Lights Out

From Wiki
Jump to navigation Jump to search

Official Problem Statement[edit]

Lights Out

Problem[edit]

In the "Lights Out" problem, Farmer John's cows are having a party and Bessie is tasked with turning off the barn lights once the party is over. Unfortunately, the cows have installed a complex network of switches. There are N (2 <= N <= 200) switches in the barn numbered from 1 to N and M (1 <= M <= 10,000) connections between them. Each connection is a one-way connection from one switch to another switch and if a connection from switch A to switch B is activated, it toggles the state of switch B (if it is off, it turns on and if it is on, it turns off). The cows have guaranteed that from any switch, there is a unique way to reach every other switch.

Bessie begins at switch 1 and wants to turn off all the switches. She can only leave once all the switches are turned off. At the start, all switches are on. The goal of the problem is to figure out the minimum number of times Bessie needs to traverse each connection such that she ends at switch 1 and all the switches are off.

Solution[edit]

The solution to this problem involves two main steps: First, precomputing the shortest path between each pair of switches using the Floyd-Warshall algorithm. Second, using dynamic programming to find the minimum number of steps.

In the precomputing step, because the cows can be in either of two states (on or off), we calculate the shortest path twice: once when the switch is on and once when it's off. We initialize the 3D array for this step such that the distance between each switch and itself is 0, and the distance between all other switches is infinity. Then we update the array based on the given connections, and finally we run the Floyd-Warshall algorithm to calculate the shortest paths.

In the dynamic programming step, we define dp[i][mask] as the minimum number of steps needed to turn off all the switches from switch i when the switches indicated by the mask are still on. We initialize this dp array to infinity, and then update it iteratively. We iterate over each mask in increasing order of the number of switches that are on. Then for each switch that is still on, we calculate the minimum number of steps to turn off all the switches by visiting switch i last, considering all possible previous switches we could have visited.

This approach ensures that we consider all possibilities and find the minimum number of steps that Bessie needs to take.

Code[edit]

C++[edit]

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

const int MAXN = 210;
const int INF = 0x3FFFFFFF;

// Variables for the optimal cost, partial sum, canonical, and parent arrays
int optimal_cost[MAXN], partial_sum[MAXN], canonical[MAXN*2][MAXN*2];
vector<int> left_parents[MAXN][MAXN], right_parents[MAXN][MAXN];

// DP array
int dp[MAXN][MAXN][MAXN][2];

int main() {
  int num_points;
  cin >> num_points;

  // Array to store the points
  vector<pair<long long, long long>> points(num_points);
  for (int i = 0; i < num_points; i++) {
    cin >> points[i].first >> points[i].second;
  }

  // Calculate the string representation from the polygon
  vector<int> S(1, 0);
  for (int i = 0; i < num_points; i++) {
    int next_point = (i + 1) % num_points;
    int next_next_point = (i + 2) % num_points;

    // Determine whether the polygon turned clockwise or counterclockwise
    // Add this info to the string S
    // Add to the string S
    
    // ...
  }

  // Compute the lights-on cost for each corner
  for (int i = 0; i < num_points; i++) {
    partial_sum[i + 1] = optimal_cost[i + 1] = optimal_cost[i] + S[2 * i + 1];
  }
  optimal_cost[num_points] = 0;
  for (int i = num_points - 1; i >= 0; i--) {
    optimal_cost[i] = min(optimal_cost[i], optimal_cost[i + 1] + S[2 * i + 1]);
  }

  // Compute the canonical positions for the strings

  // Pre-compute the state transitions

  int result = 0;

  // Calculate the dynamic programming array dp

  cout << result << endl;
  
  return 0;
}

Java[edit]

import java.util.*;
import java.io.*;

public class LightsOut {
    private static final int MAXN = 210;
    private static final int INF = 0x3FFFFFFF;

    // Variables for the optimal cost, partial sum, canonical, and parent arrays
    static int[] optimalCost = new int[MAXN];
    static int[] partialSum = new int[MAXN];
    static int[][] canonical = new int[MAXN*2][MAXN*2];
    static List<Integer>[][] leftParents = new ArrayList[MAXN][MAXN];
    static List<Integer>[][] rightParents = new ArrayList[MAXN][MAXN];

    // DP array
    static int[][][][] dp = new int[MAXN][MAXN][MAXN][2];

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int numPoints = Integer.parseInt(br.readLine());
        List<Pair> points = new ArrayList<>();

        for (int i = 0; i < numPoints; i++) {
            String[] pointParts = br.readLine().split(" ");
            points.add(new Pair(Long.parseLong(pointParts[0]), Long.parseLong(pointParts[1])));
        }

        List<Integer> S = new ArrayList<>(Arrays.asList(0));
        
        // ... rest of the code to build the String S and perform calculations

        System.out.println(result);
    }

    static class Pair {
        long first;
        long second;

        public Pair(long first, long second) {
            this.first = first;
            this.second = second;
        }
    }
}

Python[edit]

import sys
from collections import defaultdict

INF = 0x3FFFFFFF
MAXN = 210

opt = [0] * MAXN
psum = [0] * MAXN
canon = [[0 for _ in range(MAXN*2)] for _ in range(MAXN*2)]
lparents = defaultdict(list)
rparents = defaultdict(list)
dp = [[[[0, 0] for _ in range(MAXN)] for _ in range(MAXN)] for _ in range(MAXN)]


def main():
    N = int(sys.stdin.readline())
    A = [tuple(map(int, sys.stdin.readline().split())) for _ in range(N)]

    # Create the underlying string from the polygon
    S = [0]
    for i in range(N):
        j = (i + 1) % N
        k = (i + 2) % N
        S.append(abs(A[i][0] - A[j][0]) + abs(A[i][1] - A[j][1]))
        
        if ((A[i][0] - A[j][0]) * (A[k][1] - A[j][1]) - (A[k][0] - A[j][0]) * (A[i][1] - A[j][1])) > 0:
            S.append(-1)
        else:
            S.append(-2)
    S[-1] = 0
    
    # Rest of the code as per the C++ code, with appropriate translations

    print(result)

if __name__ == "__main__":
    main()