#define NORTH 0
#define SOUTH 1
#define EAST  2
#define WEST  3

#define HISTSIZE 27

struct minfo
{
    char *matrix;
    int rows, cols;
    int ourNum;
    int numContestants;
    int histogram[HISTSIZE];
    char threshold;
    int winPoints;
    int lastChompTime;
    int goalX, goalY;
};

#define P_MAX 2097152
