eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач

Turing

Some interesting documents have recently been found in the ACM archives. These documents contain an account of the original version of the ACM ICPC competition, which took place in Bletchley Park, England, in the year \textbf{1943}. In this original contest, programs submitted by contestants were executed in a simpli ed version of the so-called deterministic Turing Machine, which undoubtedly most of you are familiar with. In this simpli ed version, the tape is not in nitely long. Instead, tape cells are numbered \textbf{0} to \textbf{10^3-1} (inclusive), from left to right. Also, the alphabet used is the unary alphabet, meaning that, prior to the execution of the program, the tape will be initialized with the string consisting of \textbf{n} ones followed by all zeroes, where \textbf{n} is the numerical value of the input, and after execution the tape contents should be \textbf{m} ones followed by all zeroes, where \textbf{m} is the numerical value of the corresponding output. In the beginning, the tape head is at position \textbf{0}, and states are also numbered starting with \textbf{0}, which is assumed to be the initial state. The machines work as usual: for every machine state \textbf{q} and every bit \textbf{c} (\textbf{0} or \textbf{1}), there is at most one rule determining what the next state will be if the symbol at the position of the tape head is \textbf{c} and the current state is \textbf{q}; the rule also speci es the symbol to write at the current position and in which direction the head should move. When no rule applies, the machine stops. Your task will be to write a program that receives one of the Turing machines submitted by the contestants, as well as the test cases used (input and output pairs), and returns a verdict about the machine's results for each of the cases. Note that in this original contest, unlike the current one, there was a different verdict for each test case, instead of a general one. \InputFile The input consists of a series of speci cations (at most \textbf{30}) of a Turing Machine and of the corresponding test cases. The structure of each test case is the following: The first line contains \textbf{1} ≤ \textbf{N} ≤ \textbf{1000}, the number of rules for the machine, and \textbf{1} ≤ \textbf{M} ≤ \textbf{100}, the number of test cases for the Turing Machine. \textbf{N} lines follow, each one containing a rule, in the format \textbf{q_prev c_prev q_next c_next mov}. \textbf{q_prev} is the state of the machine before the rule is applied, \textbf{c_prev} is the content (either \textbf{0} or \textbf{1}) of the tape at the current position \textbf{p} before the rule is applied, \textbf{q_next} is the state of the machine after the rule is applied, \textbf{c_next} is the content of position \textbf{p} after the rule is applied, and \textbf{mov} is the direction in which the tape head moves one step after applying the rule ("\textbf{L}" if it moves to the left and "\textbf{R}" if it moves to the right). The states should be integers between \textbf{0} and \textbf{1000}, inclusive. The Turing machine should be deterministic; that is, there should be at most one transition from any pair (\textbf{q_prev}, \textbf{c_prev}), and should not be repeated in your output. After this, \textbf{M} lines follow, each one containing two space-separated numbers, \textbf{X} and \textbf{Y}, \textbf{1} ≤ \textbf{X}, \textbf{Y} ≤ \textbf{1000}. \textbf{X} is the value of the input to the program, and \textbf{Y} is the value of the expected output. The end of input is signaled by a case with \textbf{N = 0} and \textbf{M = 0}. \OutputFile Your output should be \textbf{MLE} if the machine attempts to access any cell outside the tape range speci ed above; \textbf{TLE} if it runs for at least \textbf{10^4} iterations without stopping or causing an \textbf{MLE} error; \textbf{WA} if the machine stops but returns an incorrect result, and \textbf{AC} if the machine stops and returns the expected result. The output for each case should go in a different line.
Лимит времени 1 секунда
Лимит использования памяти 64 MiB
Входные данные #1
6 3
0 1 1 0 R
0 0 0 0 R
1 1 1 1 R
1 0 2 1 L
2 1 2 1 L
2 0 900 1 R
1 3
300 301
0 1
0 0
Выходные данные #1
WA
AC
MLE