Modular EnigmaProblem code: MDLREN |
All submissions for this problem are available.
Alice and Bob are a paranoic couple who wants to hold a remote conversation using a chat client. However, they do not like the existent ones (e.g. gtalk, MSN, Facebook chat, etc.), as they think that there might be hidden backdoors in them that allows spies to read their conversations about their never ending love.
Last week, they decided to build their unique chat client, called ABmod, which will encode their messages using a symmetric approach. First, Alice and Bob will choose a public prime integer P and exchange a private key composed of two integers A and B, here 0 <= A,B < P.
To encode a message X they will apply the following function:
where C mod M is the remainder of dividing C between M. This operator satisfy the following properties (among others not mentioned here):
- (A + B) mod M = ((A mod M) + (B mod M)) mod M
- (A x B) mod M = ((A mod M) x (B mod M)) mod M
Eve is in a crush for Bob and wants to spy and interfere his conversation with Alice. To do this, Eve managed to intercept N messages in their plain and encoded forms. Now, she wants
to deduce the private key (A,B) to send fake encoded messages to Alice pretending she is Bob. However, she has no idea of how to do it, so she is asking for your help in this task.
Input
The first line contains an integer T, which specifies the number of test cases. Then, T test case descriptions will follow.
Each test case will start with a line with two positive integers, N and P, whose meanings were described previously. The next N lines will contain each 2 integers Xi and Yi, which represents an intercepted message whose plain form is Xi and encoded form is Yi.
Output
For each input case you must print the string "Case #i: ", where i is the test case number, starting from 1, followed by the number A and B that compose the private key. If there multiple valid keys, print "MULTIPLE SOLUTIONS" instead. If there are no valid keys, print "NO SOLUTIONS" instead.
Example
Input 4 2 5 3 0 1 4 1 13 0 12 2 2 0 0 0 1 4 97 0 13 1 46 2 79 3 15 Output Case #1: 3 1 Case #2: MULTIPLE SOLUTIONS Case #3: NO SOLUTIONS Case #4: 33 13
Constraints
- T will be between 1 and 1000, inclusive.
- P will be a prime number.
- P will be between 2 and 106, inclusive.
- N will be between 1 and 100, inclusive.
- Xi and Yi will be between 0 and P-1, inclusive, for all i between 1 and N, inclusive.
| Author: | divij |
| Date Added: | 29-09-2010 |
| Time Limit: | 1 sec |
| Source Limit: | 50000 Bytes |
| Languages: | C, C99 strict, CLOJ, CPP 4.0.0-8, CPP 4.3.2, F#, GO, PERL6, PYTH 3.1.2, TEXT |
Comments
SUCCESSFUL SUBMISSIONS FOR THIS PROBLEM:
HELP
Program should read from standard input and write to standard output. After you submit a solution you can see your results by clicking on the [My Submissions] tab on the problem page. Below are the possible results:
- Accepted
Your program ran successfully and gave a correct answer. If there is a score for the problem, this will be displayed in parenthesis next to the checkmark. - Time Limit Exceeded
Your program was compiled successfully, but it didn't stop before time limit. Try optimizing your approach. - Wrong Answer
Your program compiled and ran succesfully but the output did not match the expected output. - Runtime Error
Your code compiled and ran but encountered an error. The most common reasons are using too much memory or dividing by zero. For the specific error codes see the help section. - Compilation Error
Your code was unable to compile. When you see this icon, click on it for more information.
If you are still having problems, see a sample solution here.

Fetching successful submissions
