Statistics

Problem Statement for "Autohamil"

Problem Statement

In this problem, all strings are binary strings. That is, each character of a string is either '0' or '1'.

A deterministic finite automaton is a machine that processes strings. The automaton has a finite set of possible states. The states are numbered 0 through n-1, where n is the number of states. At any moment the automaton is in one of those states. At the beginning, the automaton is in state 0.

The automaton processes a string by reading it one character at a time. The automaton has a program (also called a "transition function"): a set of instructions that tell it how to change its state. Each instruction has the form "if you are in state X and you read the character Y, change your state to Z". There is exactly one instruction for each valid combination (X,Y). You are given the description of a specific deterministic finite automaton: int[]s z0 and z1 with n elements each. These describe the program of the automaton. For each valid i, the program of the automaton contains the following instructions:
  • If you are in state i and you read the character '0', change your state to z0[i].
  • If you are in state i and you read the character '1', change your state to z1[i].
Given the automaton, you ask yourself the following question: Is there an input string that will cause the automaton to visit each of the n states at least once? Return "Exists" (quotes for clarity) if such a string exists, or "Does not exist" if there is no such string.

Definition

Class:
Autohamil
Method:
check
Parameters:
int[], int[]
Returns:
String
Method signature:
String check(int[] z0, int[] z1)
(be sure your method is public)

Constraints

  • z0 and z1 will contain exactly n elements.
  • n will be between 1 and 50, inclusive.
  • Each element in z0 and z1 will be between 0 and n - 1, inclusive.

Examples

  1. {0,1}

    {0,1}

    Returns: "Does not exist"

    Regardless of what string you choose, the automaton will remain in state 0 during the entire computation. It will never change its state from 0 to 1.

  2. {1,1}

    {1,1}

    Returns: "Exists"

    Any non-empty string works.

  3. {1,2,2}

    {2,2,2}

    Returns: "Exists"

    For example, the string "01" works: The automaton begins in state 0. The automaton reads the character '0' and changes its state to 1. The automaton reads the character '1' and changes its state to 2.

  4. {2,2,2}

    {2,2,2}

    Returns: "Does not exist"

  5. {1,2,0,3}

    {3,2,0,3}

    Returns: "Exists"

  6. {1,2,0,4,3,5}

    {1,2,3,5,4,5}

    Returns: "Exists"

  7. {1,2,0,4,4,5}

    {1,2,3,5,4,5}

    Returns: "Does not exist"

  8. {33,28,16,14,30,31,31,41,5,40,24,1,16,19,33,26,38,29,27,26,41,10,30,7,42,11,33,2,4,20,18,3,24,22,8,5,29,22,25,38,43,37,43,32}

    {34,32,11,19,20,5,18,19,35,17,19,19,13,6,13,36,30,21,42,24,6,16,22,42,21,14,15,6,12,31,13,26,29,27,42,29,23,20,39,9,31,23,23,40}

    Returns: "Exists"

  9. {33,28,16,14,30,31,31,41,5,40,24,1,16,19,33,5,38,29,27,26,41,10,30,7,42,11,33,2,4,20,18,3,24,22,8,5,29,22,25,38,43,37,43,32}

    {34,32,11,19,20,5,18,19,35,17,19,19,13,6,13,36,30,21,42,24,6,16,22,42,21,14,15,6,12,31,13,26,29,27,42,29,23,20,39,9,31,23,23,40}

    Returns: "Exists"

  10. {33,28,16,14,30,31,31,41,5,40,23,1,16,19,33,5,38,29,27,26,41,10,30,7,42,11,33,2,4,20,18,3,24,22,8,5,29,22,25,38,43,37,43,32}

    {34,32,11,19,20,5,18,19,35,17,19,19,13,6,13,36,30,21,42,24,6,16,22,42,21,14,15,6,12,31,13,26,29,27,42,29,23,20,39,9,31,23,23,40}

    Returns: "Exists"

  11. {30,28,24,2,20,34,43,23,15,11,35,43,45,43,23,21,35,6,10,6,13,36,27,43,32,8,5,32,16,9,31,5,14,7,11,12,42,45,14,2,27,40,42,25,22,40,22}

    {5,37,20,42,46,46,27,7,19,40,1,19,8,21,25,40,41,35,32,44,12,17,24,11,36,29,16,39,45,1,12,33,30,20,28,38,42,14,18,21,3,4,8,26,26,21,22}

    Returns: "Exists"

  12. {30,28,24,31,20,34,43,23,15,11,35,43,45,43,23,21,35,6,10,6,13,36,27,43,32,8,5,32,16,9,31,5,14,7,11,12,42,45,14,2,27,40,42,25,22,40,22}

    {5,37,20,42,46,46,27,7,19,40,1,19,8,21,25,40,41,35,32,44,12,17,24,11,36,29,16,39,45,1,12,33,30,20,28,38,42,14,18,21,3,4,8,26,26,21,22}

    Returns: "Exists"

  13. {30,28,24,31,20,34,43,23,15,11,35,43,45,43,23,21,35,6,10,6,13,36,27,43,32,8,5,32,16,9,31,5,14,7,11,12,42,45,27,2,27,40,42,25,22,40,22}

    {5,37,20,42,46,46,27,7,19,40,1,19,8,21,25,40,41,35,32,44,12,17,24,11,36,29,16,39,45,1,12,33,30,20,28,38,42,14,18,21,3,4,8,26,26,21,22}

    Returns: "Exists"

  14. {16,14,14,37,19,2,22,32,42,31,9,42,35,1,22,8,37,29,31,16,22,7,9,34,29,30,27,20,17,29,40,16,8,23,22,15,39,14,31,34,11,13,39}

    {7,38,1,27,25,34,32,18,21,33,31,18,28,9,4,10,2,0,28,9,5,12,23,30,26,20,6,37,36,5,3,24,37,12,7,0,2,25,23,36,16,27,41}

    Returns: "Exists"

  15. {16,14,14,37,19,2,22,32,42,31,9,42,35,1,22,8,37,29,31,16,22,7,9,34,29,30,27,20,17,29,40,16,8,42,22,15,39,14,31,34,11,13,39}

    {7,38,1,27,25,34,32,18,21,33,31,18,28,9,4,10,2,0,28,9,5,12,23,30,26,20,6,37,36,5,3,24,37,12,7,0,2,25,23,36,16,27,41}

    Returns: "Exists"

  16. {16,14,14,37,19,2,22,13,42,31,9,42,35,1,22,8,37,29,31,16,22,7,9,34,29,30,27,20,17,29,40,16,8,42,22,15,39,14,31,34,11,13,39}

    {7,38,1,27,25,34,32,18,21,33,31,18,28,9,4,10,2,0,28,9,5,12,23,30,26,20,6,37,36,5,3,24,37,12,7,0,2,25,23,36,16,27,41}

    Returns: "Exists"

  17. {5,11,38,4,3,27,25,35,16,14,6,3,32,26,21,25,7,2,40,20,15,34,4,17,12,43,29,22,32,24,4,25,32,18,11,24,35,9,13,7,6,32,3,6}

    {24,20,27,33,17,10,19,22,31,14,30,37,24,27,8,28,39,43,35,34,25,41,39,35,16,7,18,33,24,31,36,28,10,42,7,41,35,43,11,13,1,19,23,30}

    Returns: "Exists"

  18. {5,11,38,4,3,27,25,35,16,14,6,3,32,21,21,25,7,2,40,20,15,34,4,17,12,43,29,22,32,24,4,25,32,18,11,24,35,9,13,7,6,32,3,6}

    {24,20,27,33,17,10,19,22,31,14,30,37,24,27,8,28,39,43,35,34,25,41,39,35,16,7,18,33,24,31,36,28,10,42,7,41,35,43,11,13,1,19,23,30}

    Returns: "Does not exist"

  19. {5,11,38,4,3,27,25,35,7,14,6,3,32,21,21,25,7,2,40,20,15,34,4,17,12,43,29,22,32,24,4,25,32,18,11,24,35,9,13,7,6,32,3,6}

    {24,20,27,33,17,10,19,22,31,14,30,37,24,27,8,28,39,43,35,34,25,41,39,35,16,7,18,33,24,31,36,28,10,42,7,41,35,43,11,13,1,19,23,30}

    Returns: "Does not exist"

  20. {34,18,26,11,38,16,22,34,21,41,20,28,17,23,44,41,39,6,2,22,29,3,22,10,8,25,13,43,32,32,43,36,34,30,35,35,11,33,41,17,32,25,18,28,30,43}

    {43,27,40,7,6,22,14,44,29,12,12,19,21,3,27,6,14,45,42,15,6,31,37,5,32,30,24,1,29,10,43,1,9,9,5,4,29,25,21,1,35,33,16,6,26,22}

    Returns: "Exists"

  21. {34,18,26,11,38,16,22,34,21,41,20,28,17,23,44,41,39,6,35,22,29,3,22,10,8,25,13,43,32,32,43,36,34,30,35,35,11,33,41,17,32,25,18,28,30,43}

    {43,27,40,7,6,22,14,44,29,12,12,19,21,3,27,6,14,45,42,15,6,31,37,5,32,30,24,1,29,10,43,1,9,9,5,4,29,25,21,1,35,33,16,6,26,22}

    Returns: "Does not exist"

  22. {34,18,26,11,26,16,22,34,21,41,20,28,17,23,44,41,39,6,35,22,29,3,22,10,8,25,13,43,32,32,43,36,34,30,35,35,11,33,41,17,32,25,18,28,30,43}

    {43,27,40,7,6,22,14,44,29,12,12,19,21,3,27,6,14,45,42,15,6,31,37,5,32,30,24,1,29,10,43,1,9,9,5,4,29,25,21,1,35,33,16,6,26,22}

    Returns: "Does not exist"

  23. {0,8,14,29,40,15,12,20,26,34,7,5,20,17,37,5,27,36,28,35,18,10,26,28,32,22,22,13,39,1,5,1,32,14,15,30,36,16,26,18,31}

    {34,17,12,2,23,10,2,20,19,33,11,6,19,22,11,26,33,4,3,22,33,20,20,24,0,16,21,37,15,3,25,40,2,19,4,27,35,29,10,9,38}

    Returns: "Exists"

  24. {0,8,14,29,40,15,12,20,26,34,7,5,20,17,37,5,27,36,28,35,18,10,26,28,32,22,22,13,39,40,5,1,32,14,15,30,36,16,26,18,31}

    {34,17,12,2,23,10,2,20,19,33,11,6,19,22,11,26,33,4,3,22,33,20,20,24,0,16,21,37,15,3,25,40,2,19,4,27,35,29,10,9,38}

    Returns: "Exists"

  25. {0,8,14,29,40,15,12,20,26,34,7,5,20,17,37,5,27,36,28,35,18,10,26,28,7,22,22,13,39,40,5,1,32,14,15,30,36,16,26,18,31}

    {34,17,12,2,23,10,2,20,19,33,11,6,19,22,11,26,33,4,3,22,33,20,20,24,0,16,21,37,15,3,25,40,2,19,4,27,35,29,10,9,38}

    Returns: "Does not exist"

  26. {36,39,9,17,34,41,17,5,12,6,37,3,1,13,17,7,23,5,10,5,42,28,21,23,8,23,8,31,26,31,0,31,2,11,4,37,41,40,27,3,9,24,33,22,0,19}

    {9,14,12,40,20,38,36,4,5,7,38,35,33,30,4,6,25,34,10,43,8,24,18,45,1,27,15,13,29,24,16,41,30,35,6,32,35,40,44,8,20,27,19,19,34,31}

    Returns: "Exists"

  27. {36,39,9,17,34,41,17,5,12,6,37,3,1,13,17,7,23,5,10,5,42,28,21,23,8,23,8,31,26,31,0,31,2,11,4,37,41,40,27,3,28,24,33,22,0,19}

    {9,14,12,40,20,38,36,4,5,7,38,35,33,30,4,6,25,34,10,43,8,24,18,45,1,27,15,13,29,24,16,41,30,35,6,32,35,40,44,8,20,27,19,19,34,31}

    Returns: "Exists"

  28. {36,39,9,17,34,41,17,5,12,6,37,3,1,13,17,7,23,5,10,5,42,28,21,23,8,23,8,31,26,31,0,31,2,11,4,37,41,40,27,3,6,24,33,22,0,19}

    {9,14,12,40,20,38,36,4,5,7,38,35,33,30,4,6,25,34,10,43,8,24,18,45,1,27,15,13,29,24,16,41,30,35,6,32,35,40,44,8,20,27,19,19,34,31}

    Returns: "Exists"

  29. {19,17,8,16,17,13,22,31,4,12,10,33,39,39,2,10,12,11,8,6,17,21,23,14,37,24,21,22,28,31,30,7,24,0,37,24,28,25,27,27,29,2}

    {30,26,36,23,10,31,13,32,18,30,35,10,3,37,19,38,1,25,41,40,29,23,8,9,14,35,20,21,34,39,15,21,24,24,13,39,5,11,39,39,12,36}

    Returns: "Exists"

  30. {19,17,8,16,17,13,22,31,7,12,10,33,39,39,2,10,12,11,8,6,17,21,23,14,37,24,21,22,28,31,30,7,24,0,37,24,28,25,27,27,29,2}

    {30,26,36,23,10,31,13,32,18,30,35,10,3,37,19,38,1,25,41,40,29,23,8,9,14,35,20,21,34,39,15,21,24,24,13,39,5,11,39,39,12,36}

    Returns: "Does not exist"

  31. {19,17,8,16,17,13,22,31,7,12,10,33,39,39,2,10,12,11,8,6,17,21,23,14,37,24,21,22,28,31,41,7,24,0,37,24,28,25,27,27,29,2}

    {30,26,36,23,10,31,13,32,18,30,35,10,3,37,19,38,1,25,41,40,29,23,8,9,14,35,20,21,34,39,15,21,24,24,13,39,5,11,39,39,12,36}

    Returns: "Does not exist"

  32. {45,11,6,48,4,10,17,3,44,22,36,40,5,2,16,28,39,12,33,11,33,44,3,41,9,9,14,35,21,20,37,21,7,31,31,17,36,27,47,10,23,13,43,1,48,36,12,16,22}

    {33,4,25,17,12,8,11,41,18,6,10,26,34,21,44,32,12,15,36,24,17,44,5,29,1,39,7,31,24,2,46,42,3,19,38,34,33,0,1,12,18,21,14,17,22,28,11,30,15}

    Returns: "Exists"

  33. {45,11,6,48,4,10,17,3,44,22,36,40,5,2,16,28,39,12,33,11,33,44,3,41,9,9,14,35,21,20,37,21,7,31,31,28,36,27,47,10,23,13,43,1,48,36,12,16,22}

    {33,4,25,17,12,8,11,41,18,6,10,26,34,21,44,32,12,15,36,24,17,44,5,29,1,39,7,31,24,2,46,42,3,19,38,34,33,0,1,12,18,21,14,17,22,28,11,30,15}

    Returns: "Exists"

  34. {45,11,6,48,4,10,17,3,44,22,36,40,5,2,16,28,39,12,33,11,33,44,3,41,9,9,14,35,21,20,37,21,7,31,31,28,36,27,47,10,23,13,43,1,48,36,35,16,22}

    {33,4,25,17,12,8,11,41,18,6,10,26,34,21,44,32,12,15,36,24,17,44,5,29,1,39,7,31,24,2,46,42,3,19,38,34,33,0,1,12,18,21,14,17,22,28,11,30,15}

    Returns: "Exists"

  35. {20,26,15,36,3,12,35,8,12,1,42,8,16,41,29,36,2,22,28,35,39,13,14,37,18,8,11,24,5,31,40,12,25,17,27,18,33,21,37,9,28,30,10}

    {25,20,6,22,38,25,36,31,7,1,13,41,23,35,34,23,14,42,3,26,30,14,31,1,4,25,15,19,6,35,3,11,34,32,23,18,10,38,8,39,37,11,1}

    Returns: "Exists"

  36. {20,26,15,36,3,12,11,8,12,1,42,8,16,41,29,36,2,22,28,35,39,13,14,37,18,8,11,24,5,31,40,12,25,17,27,18,33,21,37,9,28,30,10}

    {25,20,6,22,38,25,36,31,7,1,13,41,23,35,34,23,14,42,3,26,30,14,31,1,4,25,15,19,6,35,3,11,34,32,23,18,10,38,8,39,37,11,1}

    Returns: "Exists"

  37. {33,26,15,36,3,12,11,8,12,1,42,8,16,41,29,36,2,22,28,35,39,13,14,37,18,8,11,24,5,31,40,12,25,17,27,18,33,21,37,9,28,30,10}

    {25,20,6,22,38,25,36,31,7,1,13,41,23,35,34,23,14,42,3,26,30,14,31,1,4,25,15,19,6,35,3,11,34,32,23,18,10,38,8,39,37,11,1}

    Returns: "Exists"

  38. {36,42,37,25,3,29,8,18,25,1,1,4,26,35,10,12,33,18,28,15,28,38,30,14,12,37,28,26,20,37,14,3,21,20,11,15,39,37,19,1,9,22,12}

    {24,39,18,22,37,32,39,15,32,17,40,10,7,32,6,15,2,28,5,28,27,3,13,4,40,25,37,16,2,20,41,41,10,31,24,23,23,2,16,0,11,34,3}

    Returns: "Exists"

  39. {36,42,37,25,3,29,8,18,25,1,1,4,26,35,10,12,33,18,28,15,28,38,30,14,12,37,28,26,20,37,14,3,32,20,11,15,39,37,19,1,9,22,12}

    {24,39,18,22,37,32,39,15,32,17,40,10,7,32,6,15,2,28,5,28,27,3,13,4,40,25,37,16,2,20,41,41,10,31,24,23,23,2,16,0,11,34,3}

    Returns: "Does not exist"

  40. {36,42,37,25,30,29,8,18,25,1,1,4,26,35,10,12,33,18,28,15,28,38,30,14,12,37,28,26,20,37,14,3,32,20,11,15,39,37,19,1,9,22,12}

    {24,39,18,22,37,32,39,15,32,17,40,10,7,32,6,15,2,28,5,28,27,3,13,4,40,25,37,16,2,20,41,41,10,31,24,23,23,2,16,0,11,34,3}

    Returns: "Does not exist"

  41. {12,2,35,36,32,17,20,24,15,25,9,24,38,13,40,44,11,24,8,46,28,28,21,28,37,6,1,11,12,14,45,36,12,46,40,18,23,30,1,28,19,30,18,34,23,45,43}

    {32,1,4,11,33,40,16,10,38,15,41,7,33,5,2,2,10,4,31,22,39,13,41,24,41,26,19,9,7,3,4,24,3,41,26,8,40,26,2,4,2,27,42,42,7,23,29}

    Returns: "Exists"

  42. {12,2,35,36,32,17,20,24,15,25,9,24,38,13,40,44,11,24,8,20,28,28,21,28,37,6,1,11,12,14,45,36,12,46,40,18,23,30,1,28,19,30,18,34,23,45,43}

    {32,1,4,11,33,40,16,10,38,15,41,7,33,5,2,2,10,4,31,22,39,13,41,24,41,26,19,9,7,3,4,24,3,41,26,8,40,26,2,4,2,27,42,42,7,23,29}

    Returns: "Exists"

  43. {26,2,35,36,32,17,20,24,15,25,9,24,38,13,40,44,11,24,8,20,28,28,21,28,37,6,1,11,12,14,45,36,12,46,40,18,23,30,1,28,19,30,18,34,23,45,43}

    {32,1,4,11,33,40,16,10,38,15,41,7,33,5,2,2,10,4,31,22,39,13,41,24,41,26,19,9,7,3,4,24,3,41,26,8,40,26,2,4,2,27,42,42,7,23,29}

    Returns: "Exists"

  44. {44,23,0,5,36,29,13,2,36,41,40,43,15,17,17,18,6,17,14,14,9,18,0,37,16,1,5,31,30,22,22,12,32,16,38,30,25,35,41,11,39,34,38,27,9,31,13}

    {0,33,36,45,38,42,26,42,1,34,38,8,27,1,5,41,10,19,33,4,32,6,27,22,35,31,37,17,24,37,28,20,23,46,3,12,46,7,25,34,9,21,25,42,38,20,21}

    Returns: "Exists"

  45. {44,23,0,5,10,29,13,2,36,41,40,43,15,17,17,18,6,17,14,14,9,18,0,37,16,1,5,31,30,22,22,12,32,16,38,30,25,35,41,11,39,34,38,27,9,31,13}

    {0,33,36,45,38,42,26,42,1,34,38,8,27,1,5,41,10,19,33,4,32,6,27,22,35,31,37,17,24,37,28,20,23,46,3,12,46,7,25,34,9,21,25,42,38,20,21}

    Returns: "Exists"

  46. {44,23,0,5,10,29,13,2,36,41,40,43,15,17,17,18,6,17,14,14,9,18,0,19,16,1,5,31,30,22,22,12,32,16,38,30,25,35,41,11,39,34,38,27,9,31,13}

    {0,33,36,45,38,42,26,42,1,34,38,8,27,1,5,41,10,19,33,4,32,6,27,22,35,31,37,17,24,37,28,20,23,46,3,12,46,7,25,34,9,21,25,42,38,20,21}

    Returns: "Exists"

  47. {13,31,40,29,19,35,3,5,29,1,11,19,33,23,26,8,2,20,30,17,31,39,40,8,30,22,6,40,22,7,31,33,26,8,8,24,20,39,25,25,25}

    {35,2,14,5,15,27,7,7,7,22,16,9,9,36,38,29,34,19,28,16,24,37,29,15,10,16,4,21,8,14,38,4,25,13,32,12,33,5,30,18,1}

    Returns: "Exists"

  48. {3,31,40,29,19,35,3,5,29,1,11,19,33,23,26,8,2,20,30,17,31,39,40,8,30,22,6,40,22,7,31,33,26,8,8,24,20,39,25,25,25}

    {35,2,14,5,15,27,7,7,7,22,16,9,9,36,38,29,34,19,28,16,24,37,29,15,10,16,4,21,8,14,38,4,25,13,32,12,33,5,30,18,1}

    Returns: "Exists"

  49. {3,31,40,29,19,35,3,5,29,1,11,19,33,23,26,8,2,20,30,17,31,39,40,8,30,22,6,40,22,7,31,33,26,8,8,32,20,39,25,25,25}

    {35,2,14,5,15,27,7,7,7,22,16,9,9,36,38,29,34,19,28,16,24,37,29,15,10,16,4,21,8,14,38,4,25,13,32,12,33,5,30,18,1}

    Returns: "Exists"

  50. {35,30,2,19,22,14,1,25,43,31,4,25,4,21,6,26,12,20,42,28,43,32,34,28,1,44,13,17,2,13,41,22,40,16,27,33,41,38,13,18,10,34,36,23,12}

    {9,41,28,12,6,37,6,15,40,23,13,25,22,19,24,9,8,18,11,27,3,27,26,18,11,44,12,7,39,35,29,12,20,11,23,9,21,16,25,41,0,34,5,9,36}

    Returns: "Exists"

  51. {35,30,2,19,22,14,1,25,43,31,4,25,4,21,6,26,12,20,42,28,43,32,34,28,1,44,13,17,22,13,41,22,40,16,27,33,41,38,13,18,10,34,36,23,12}

    {9,41,28,12,6,37,6,15,40,23,13,25,22,19,24,9,8,18,11,27,3,27,26,18,11,44,12,7,39,35,29,12,20,11,23,9,21,16,25,41,0,34,5,9,36}

    Returns: "Does not exist"

  52. {35,30,2,19,22,14,1,25,43,10,4,25,4,21,6,26,12,20,42,28,43,32,34,28,1,44,13,17,22,13,41,22,40,16,27,33,41,38,13,18,10,34,36,23,12}

    {9,41,28,12,6,37,6,15,40,23,13,25,22,19,24,9,8,18,11,27,3,27,26,18,11,44,12,7,39,35,29,12,20,11,23,9,21,16,25,41,0,34,5,9,36}

    Returns: "Does not exist"

  53. {31,4,18,36,27,9,19,10,3,23,34,4,25,18,37,39,20,38,10,38,25,19,6,25,1,2,40,8,6,15,20,22,25,5,10,30,33,26,38,24,19}

    {36,1,11,4,29,21,13,9,17,33,24,18,17,10,35,27,14,16,26,32,12,9,30,21,37,4,23,33,37,13,39,11,3,17,10,7,20,34,28,17,9}

    Returns: "Exists"

  54. {31,4,18,36,27,9,19,10,3,23,34,4,25,18,37,39,20,13,10,38,25,19,6,25,1,2,40,8,6,15,20,22,25,5,10,30,33,26,38,24,19}

    {36,1,11,4,29,21,13,9,17,33,24,18,17,10,35,27,14,16,26,32,12,9,30,21,37,4,23,33,37,13,39,11,3,17,10,7,20,34,28,17,9}

    Returns: "Exists"

  55. {31,4,18,36,27,9,19,10,3,23,34,4,25,18,37,39,20,13,10,38,25,19,19,25,1,2,40,8,6,15,20,22,25,5,10,30,33,26,38,24,19}

    {36,1,11,4,29,21,13,9,17,33,24,18,17,10,35,27,14,16,26,32,12,9,30,21,37,4,23,33,37,13,39,11,3,17,10,7,20,34,28,17,9}

    Returns: "Exists"

  56. {30,20,10,22,21,37,9,14,31,8,35,36,28,25,32,1,1,38,34,12,26,6,32,17,27,26,16,30,6,3,7,30,22,1,15,19,1,4,27,13,30}

    {23,26,21,25,31,39,33,8,0,29,15,40,9,15,34,10,35,29,24,38,31,10,23,23,25,25,6,21,32,30,22,5,18,30,22,4,9,11,11,2,39}

    Returns: "Exists"

  57. {30,20,10,22,21,37,9,14,31,8,35,36,28,25,32,1,1,38,34,12,26,6,32,17,27,15,16,30,6,3,7,30,22,1,15,19,1,4,27,13,30}

    {23,26,21,25,31,39,33,8,0,29,15,40,9,15,34,10,35,29,24,38,31,10,23,23,25,25,6,21,32,30,22,5,18,30,22,4,9,11,11,2,39}

    Returns: "Exists"

  58. {30,20,10,22,21,37,9,14,31,8,35,36,28,25,32,1,1,38,34,12,26,6,32,17,27,15,16,30,6,3,7,30,22,1,15,19,1,4,27,13,30}

    {23,26,21,25,31,39,33,8,0,29,15,40,9,15,34,10,35,29,24,38,31,10,23,23,25,25,6,21,32,30,22,5,18,30,22,4,9,11,11,2,39}

    Returns: "Exists"

  59. {1,13,21,12,11,4,29,6,18,14,3,28,37,30,10,9,1,19,20,14,38,14,36,32,4,37,11,21,34,35,24,10,38,30,4,16,2,34,6,27,30,20}

    {5,1,26,15,28,27,33,22,32,40,40,41,26,36,17,24,36,36,10,26,38,3,19,7,35,37,36,8,29,31,25,23,6,34,39,36,25,30,33,21,2,15}

    Returns: "Exists"

  60. {1,13,21,12,11,4,29,6,18,14,3,28,37,30,10,30,1,19,20,14,38,14,36,32,4,37,11,21,34,35,24,10,38,30,4,16,2,34,6,27,30,20}

    {5,1,26,15,28,27,33,22,32,40,40,41,26,36,17,24,36,36,10,26,38,3,19,7,35,37,36,8,29,31,25,23,6,34,39,36,25,30,33,21,2,15}

    Returns: "Does not exist"

  61. {1,13,21,12,11,4,29,6,18,14,3,28,37,30,10,30,1,19,1,14,38,14,36,32,4,37,11,21,34,35,24,10,38,30,4,16,2,34,6,27,30,20}

    {5,1,26,15,28,27,33,22,32,40,40,41,26,36,17,24,36,36,10,26,38,3,19,7,35,37,36,8,29,31,25,23,6,34,39,36,25,30,33,21,2,15}

    Returns: "Does not exist"

  62. {7,25,19,30,22,22,10,28,3,18,19,43,7,38,1,30,23,12,15,33,4,13,23,30,9,41,5,44,32,38,2,1,6,2,24,40,1,23,4,38,10,38,0,17,19}

    {2,7,13,33,20,11,24,42,7,39,31,27,34,26,3,19,19,37,16,14,0,8,35,24,7,21,24,33,22,30,29,10,33,6,39,42,14,36,34,31,34,17,42,13,35}

    Returns: "Exists"

  63. {7,25,19,30,22,22,10,28,3,18,19,43,7,38,1,30,23,12,15,33,4,13,23,30,9,41,5,44,32,38,2,1,6,2,24,40,1,23,4,38,10,38,0,19,19}

    {2,7,13,33,20,11,24,42,7,39,31,27,34,26,3,19,19,37,16,14,0,8,35,24,7,21,24,33,22,30,29,10,33,6,39,42,14,36,34,31,34,17,42,13,35}

    Returns: "Exists"

  64. {7,25,19,30,22,22,10,28,3,18,19,29,7,38,1,30,23,12,15,33,4,13,23,30,9,41,5,44,32,38,2,1,6,2,24,40,1,23,4,38,10,38,0,19,19}

    {2,7,13,33,20,11,24,42,7,39,31,27,34,26,3,19,19,37,16,14,0,8,35,24,7,21,24,33,22,30,29,10,33,6,39,42,14,36,34,31,34,17,42,13,35}

    Returns: "Does not exist"

  65. {44,14,1,15,35,2,43,40,6,13,4,36,30,29,8,8,21,5,10,23,25,25,29,1,41,34,9,18,25,37,15,35,9,1,5,28,13,23,24,18,19,3,3,32,42,17}

    {39,18,24,15,38,33,31,38,31,12,17,16,44,6,36,28,18,45,17,4,15,43,45,2,33,43,35,42,26,3,19,21,22,35,32,20,7,10,27,23,2,33,31,11,20,40}

    Returns: "Exists"

  66. {44,14,1,15,35,2,43,40,6,13,4,36,30,29,8,8,21,5,10,23,25,25,29,1,41,34,9,18,17,37,15,35,9,1,5,28,13,23,24,18,19,3,3,32,42,17}

    {39,18,24,15,38,33,31,38,31,12,17,16,44,6,36,28,18,45,17,4,15,43,45,2,33,43,35,42,26,3,19,21,22,35,32,20,7,10,27,23,2,33,31,11,20,40}

    Returns: "Exists"

  67. {44,14,1,15,35,2,43,40,35,13,4,36,30,29,8,8,21,5,10,23,25,25,29,1,41,34,9,18,17,37,15,35,9,1,5,28,13,23,24,18,19,3,3,32,42,17}

    {39,18,24,15,38,33,31,38,31,12,17,16,44,6,36,28,18,45,17,4,15,43,45,2,33,43,35,42,26,3,19,21,22,35,32,20,7,10,27,23,2,33,31,11,20,40}

    Returns: "Exists"

  68. {1,23,30,14,3,40,8,31,35,27,24,32,21,18,27,14,29,37,30,15,25,26,4,13,22,26,0,28,31,15,7,2,3,29,22,26,17,15,6,8,19}

    {33,33,11,8,13,32,36,35,17,20,5,13,1,36,28,21,31,38,13,27,16,27,22,11,4,12,31,14,26,10,18,9,20,2,16,10,34,23,38,11,39}

    Returns: "Exists"

  69. {1,23,30,14,3,40,8,31,35,27,24,32,21,33,27,14,29,37,30,15,25,26,4,13,22,26,0,28,31,15,7,2,3,29,22,26,17,15,6,8,19}

    {33,33,11,8,13,32,36,35,17,20,5,13,1,36,28,21,31,38,13,27,16,27,22,11,4,12,31,14,26,10,18,9,20,2,16,10,34,23,38,11,39}

    Returns: "Exists"

  70. {1,23,30,14,3,40,8,31,35,27,24,32,21,33,27,14,29,37,30,15,25,26,4,13,22,26,0,28,31,15,7,2,3,29,22,26,17,15,6,8,19}

    {33,33,11,8,13,32,36,35,17,20,5,13,1,36,28,21,31,38,13,27,16,27,22,11,4,12,31,14,26,10,18,9,20,2,16,10,34,23,38,11,39}

    Returns: "Exists"

  71. {25,36,21,9,21,20,33,9,35,34,12,38,19,19,20,37,38,43,39,39,31,2,1,8,14,25,4,10,23,3,6,2,24,18,10,2,22,37,11,17,40,1,0,16,34}

    {27,11,35,2,27,40,34,5,8,31,39,14,32,6,23,22,44,15,19,0,32,28,29,15,35,41,13,26,4,8,17,42,6,30,20,17,0,27,32,0,24,7,12,5,26}

    Returns: "Exists"

  72. {25,36,21,9,21,20,33,9,35,34,12,38,19,19,20,37,38,43,39,39,31,2,1,8,14,25,4,10,23,3,6,2,24,18,10,2,22,37,11,17,40,1,0,0,34}

    {27,11,35,2,27,40,34,5,8,31,39,14,32,6,23,22,44,15,19,0,32,28,29,15,35,41,13,26,4,8,17,42,6,30,20,17,0,27,32,0,24,7,12,5,26}

    Returns: "Does not exist"

  73. {25,36,21,9,21,20,33,9,35,34,12,38,19,19,20,37,38,43,39,39,31,2,1,8,14,25,4,10,23,3,35,2,24,18,10,2,22,37,11,17,40,1,0,0,34}

    {27,11,35,2,27,40,34,5,8,31,39,14,32,6,23,22,44,15,19,0,32,28,29,15,35,41,13,26,4,8,17,42,6,30,20,17,0,27,32,0,24,7,12,5,26}

    Returns: "Does not exist"

  74. {30,22,36,38,9,42,30,14,16,12,39,30,26,42,1,13,41,6,3,29,37,43,31,9,33,44,28,18,4,17,20,22,11,16,37,26,34,25,37,10,40,27,7,44,17}

    {25,4,2,36,0,22,39,22,15,30,26,15,16,27,42,5,39,4,2,8,27,23,21,18,14,2,38,20,35,11,43,32,13,35,18,42,12,4,19,40,28,24,34,7,16}

    Returns: "Exists"

  75. {35,22,36,38,9,42,30,14,16,12,39,30,26,42,1,13,41,6,3,29,37,43,31,9,33,44,28,18,4,17,20,22,11,16,37,26,34,25,37,10,40,27,7,44,17}

    {25,4,2,36,0,22,39,22,15,30,26,15,16,27,42,5,39,4,2,8,27,23,21,18,14,2,38,20,35,11,43,32,13,35,18,42,12,4,19,40,28,24,34,7,16}

    Returns: "Exists"

  76. {35,22,36,38,9,42,30,14,16,12,39,30,26,42,1,13,24,6,3,29,37,43,31,9,33,44,28,18,4,17,20,22,11,16,37,26,34,25,37,10,40,27,7,44,17}

    {25,4,2,36,0,22,39,22,15,30,26,15,16,27,42,5,39,4,2,8,27,23,21,18,14,2,38,20,35,11,43,32,13,35,18,42,12,4,19,40,28,24,34,7,16}

    Returns: "Does not exist"

  77. {38,10,22,19,8,30,0,28,13,30,41,28,13,4,3,39,32,6,8,18,39,11,18,29,8,35,27,5,2,33,27,41,18,40,40,0,5,17,37,37,9,24}

    {15,0,28,29,23,1,27,32,32,19,22,36,24,25,7,11,26,12,34,31,3,2,19,21,33,23,14,18,16,20,39,14,18,40,33,7,20,5,41,25,19,25}

    Returns: "Exists"

  78. {38,10,22,19,8,30,0,28,13,30,41,28,13,4,3,34,32,6,8,18,39,11,18,29,8,35,27,5,2,33,27,41,18,40,40,0,5,17,37,37,9,24}

    {15,0,28,29,23,1,27,32,32,19,22,36,24,25,7,11,26,12,34,31,3,2,19,21,33,23,14,18,16,20,39,14,18,40,33,7,20,5,41,25,19,25}

    Returns: "Exists"

  79. {38,10,22,19,8,30,0,28,13,30,41,28,13,4,3,34,32,6,8,18,39,11,29,29,8,35,27,5,2,33,27,41,18,40,40,0,5,17,37,37,9,24}

    {15,0,28,29,23,1,27,32,32,19,22,36,24,25,7,11,26,12,34,31,3,2,19,21,33,23,14,18,16,20,39,14,18,40,33,7,20,5,41,25,19,25}

    Returns: "Exists"

  80. {24,1,36,2,33,3,29,26,33,25,17,43,21,11,40,20,31,2,7,13,21,23,10,14,4,40,30,28,8,15,41,20,39,25,31,41,16,0,19,44,30,32,22,3,11}

    {44,18,11,3,37,9,27,44,35,38,20,33,44,19,20,34,23,4,28,1,1,37,29,17,20,38,3,42,1,12,3,37,44,33,36,6,5,21,36,2,12,43,19,20,1}

    Returns: "Exists"

  81. {24,1,36,2,33,3,29,26,33,25,17,43,21,11,40,20,31,2,7,13,21,23,10,14,4,40,30,28,8,15,41,20,39,25,31,41,16,0,19,44,30,32,22,4,11}

    {44,18,11,3,37,9,27,44,35,38,20,33,44,19,20,34,23,4,28,1,1,37,29,17,20,38,3,42,1,12,3,37,44,33,36,6,5,21,36,2,12,43,19,20,1}

    Returns: "Exists"

  82. {24,10,36,2,33,3,29,26,33,25,17,43,21,11,40,20,31,2,7,13,21,23,10,14,4,40,30,28,8,15,41,20,39,25,31,41,16,0,19,44,30,32,22,4,11}

    {44,18,11,3,37,9,27,44,35,38,20,33,44,19,20,34,23,4,28,1,1,37,29,17,20,38,3,42,1,12,3,37,44,33,36,6,5,21,36,2,12,43,19,20,1}

    Returns: "Exists"

  83. {33,2,29,25,24,41,33,31,39,3,29,38,23,23,11,30,30,24,26,40,39,27,42,42,34,14,7,16,12,10,6,28,38,42,28,1,37,12,22,15,24,9,37}

    {1,41,31,15,13,16,13,8,33,12,37,11,6,37,15,1,18,19,15,31,2,5,37,36,35,21,32,36,19,21,30,20,27,3,42,30,9,15,28,5,17,4,22}

    Returns: "Exists"

  84. {33,2,29,25,24,41,33,31,39,3,29,38,25,23,11,30,30,24,26,40,39,27,42,42,34,14,7,16,12,10,6,28,38,42,28,1,37,12,22,15,24,9,37}

    {1,41,31,15,13,16,13,8,33,12,37,11,6,37,15,1,18,19,15,31,2,5,37,36,35,21,32,36,19,21,30,20,27,3,42,30,9,15,28,5,17,4,22}

    Returns: "Exists"

  85. {33,2,29,25,24,41,18,31,39,3,29,38,25,23,11,30,30,24,26,40,39,27,42,42,34,14,7,16,12,10,6,28,38,42,28,1,37,12,22,15,24,9,37}

    {1,41,31,15,13,16,13,8,33,12,37,11,6,37,15,1,18,19,15,31,2,5,37,36,35,21,32,36,19,21,30,20,27,3,42,30,9,15,28,5,17,4,22}

    Returns: "Exists"

  86. {25,41,2,42,2,8,40,13,36,11,32,25,33,38,35,14,31,7,29,39,5,16,30,16,11,41,31,26,34,10,4,39,18,12,7,0,28,41,21,17,32,6,35}

    {13,37,7,0,28,33,27,30,15,4,36,25,8,19,36,16,14,21,1,20,5,23,13,5,4,27,42,36,30,29,35,31,22,36,7,32,24,20,9,40,3,23,27}

    Returns: "Exists"

  87. {25,41,2,42,2,8,40,13,36,11,32,25,33,38,35,14,31,7,29,39,5,16,13,16,11,41,31,26,34,10,4,39,18,12,7,0,28,41,21,17,32,6,35}

    {13,37,7,0,28,33,27,30,15,4,36,25,8,19,36,16,14,21,1,20,5,23,13,5,4,27,42,36,30,29,35,31,22,36,7,32,24,20,9,40,3,23,27}

    Returns: "Exists"

  88. {25,41,2,42,2,8,40,13,36,11,32,25,33,38,35,14,31,7,29,39,5,16,13,16,11,41,31,26,34,10,4,39,18,12,7,0,28,41,5,17,32,6,35}

    {13,37,7,0,28,33,27,30,15,4,36,25,8,19,36,16,14,21,1,20,5,23,13,5,4,27,42,36,30,29,35,31,22,36,7,32,24,20,9,40,3,23,27}

    Returns: "Exists"

  89. {41,1,20,14,22,19,7,18,1,39,33,30,32,13,41,35,34,23,35,30,37,4,4,24,9,38,18,8,33,17,16,19,31,35,17,26,27,19,15,10,32,28}

    {5,12,3,31,25,28,2,9,3,41,31,38,3,3,21,9,15,35,24,28,21,13,11,9,24,37,10,25,19,26,40,29,6,24,13,2,11,32,40,36,30,40}

    Returns: "Exists"

  90. {41,1,20,14,22,19,7,18,1,39,33,30,32,13,41,35,34,27,35,30,37,4,4,24,9,38,18,8,33,17,16,19,31,35,17,26,27,19,15,10,32,28}

    {5,12,3,31,25,28,2,9,3,41,31,38,3,3,21,9,15,35,24,28,21,13,11,9,24,37,10,25,19,26,40,29,6,24,13,2,11,32,40,36,30,40}

    Returns: "Does not exist"

  91. {41,1,20,14,22,19,7,18,1,39,33,30,32,13,41,35,34,27,35,30,37,4,4,24,9,38,39,8,33,17,16,19,31,35,17,26,27,19,15,10,32,28}

    {5,12,3,31,25,28,2,9,3,41,31,38,3,3,21,9,15,35,24,28,21,13,11,9,24,37,10,25,19,26,40,29,6,24,13,2,11,32,40,36,30,40}

    Returns: "Does not exist"

  92. {4,22,41,33,27,36,9,18,8,41,11,5,19,37,21,36,11,32,43,10,12,31,43,10,38,35,33,20,42,17,18,15,8,12,39,5,27,36,26,28,42,36,40,13}

    {32,11,18,9,43,14,42,0,15,42,14,42,25,5,32,20,23,20,1,3,18,36,20,14,39,26,8,29,0,30,34,39,26,7,8,36,4,2,6,24,24,8,16,25}

    Returns: "Exists"

  93. {4,22,41,33,27,36,9,18,8,41,13,5,19,37,21,36,11,32,43,10,12,31,43,10,38,35,33,20,42,17,18,15,8,12,39,5,27,36,26,28,42,36,40,13}

    {32,11,18,9,43,14,42,0,15,42,14,42,25,5,32,20,23,20,1,3,18,36,20,14,39,26,8,29,0,30,34,39,26,7,8,36,4,2,6,24,24,8,16,25}

    Returns: "Exists"

  94. {4,22,41,33,27,36,9,18,8,41,13,5,19,37,21,36,11,32,43,10,12,31,43,10,38,35,33,20,42,17,18,15,8,12,35,5,27,36,26,28,42,36,40,13}

    {32,11,18,9,43,14,42,0,15,42,14,42,25,5,32,20,23,20,1,3,18,36,20,14,39,26,8,29,0,30,34,39,26,7,8,36,4,2,6,24,24,8,16,25}

    Returns: "Exists"

  95. {21,25,36,0,12,36,30,43,31,30,45,39,28,36,19,8,10,14,35,14,4,45,13,9,1,1,39,27,1,23,9,11,7,32,37,21,14,44,34,46,25,5,20,6,10,41,9,6}

    {30,30,18,41,36,42,28,23,24,27,26,12,33,16,17,24,19,43,47,47,33,46,25,16,19,2,16,19,15,7,47,44,23,22,20,12,47,18,40,22,10,12,29,31,16,38,3,47}

    Returns: "Exists"

  96. {21,25,36,0,12,36,30,43,31,30,45,39,28,36,19,8,10,14,35,14,4,45,13,9,1,1,39,27,1,23,9,11,7,32,37,21,14,44,34,46,25,5,20,6,10,41,15,6}

    {30,30,18,41,36,42,28,23,24,27,26,12,33,16,17,24,19,43,47,47,33,46,25,16,19,2,16,19,15,7,47,44,23,22,20,12,47,18,40,22,10,12,29,31,16,38,3,47}

    Returns: "Exists"

  97. {21,25,36,0,12,36,30,43,31,30,45,39,28,36,19,8,10,14,35,14,4,45,13,4,1,1,39,27,1,23,9,11,7,32,37,21,14,44,34,46,25,5,20,6,10,41,15,6}

    {30,30,18,41,36,42,28,23,24,27,26,12,33,16,17,24,19,43,47,47,33,46,25,16,19,2,16,19,15,7,47,44,23,22,20,12,47,18,40,22,10,12,29,31,16,38,3,47}

    Returns: "Exists"

  98. {29,18,22,8,9,15,41,28,18,4,37,22,14,6,17,19,1,23,2,26,41,34,32,25,12,6,39,22,33,43,5,42,6,31,15,7,1,14,9,16,32,8,36,20}

    {35,24,11,8,14,10,22,3,16,23,28,38,32,9,12,13,3,42,42,43,43,26,31,37,20,1,43,42,0,39,15,28,32,14,16,11,13,30,16,27,29,5,40,21}

    Returns: "Exists"

  99. {29,18,22,8,9,15,41,28,18,4,37,22,14,6,17,19,1,23,2,26,41,34,32,25,12,6,39,22,33,6,5,42,6,31,15,7,1,14,9,16,32,8,36,20}

    {35,24,11,8,14,10,22,3,16,23,28,38,32,9,12,13,3,42,42,43,43,26,31,37,20,1,43,42,0,39,15,28,32,14,16,11,13,30,16,27,29,5,40,21}

    Returns: "Exists"

  100. {29,18,22,8,9,15,41,28,18,4,7,22,14,6,17,19,1,23,2,26,41,34,32,25,12,6,39,22,33,6,5,42,6,31,15,7,1,14,9,16,32,8,36,20}

    {35,24,11,8,14,10,22,3,16,23,28,38,32,9,12,13,3,42,42,43,43,26,31,37,20,1,43,42,0,39,15,28,32,14,16,11,13,30,16,27,29,5,40,21}

    Returns: "Exists"

  101. {18,10,40,36,29,45,39,34,12,0,8,18,30,13,4,11,32,4,22,24,20,23,24,2,3,32,8,34,40,23,10,18,23,23,11,39,32,26,9,24,36,1,35,21,30,41}

    {37,19,24,1,40,12,4,3,7,21,31,9,20,28,37,5,29,23,27,11,1,0,42,25,13,36,40,43,38,16,20,19,17,6,15,36,41,44,7,14,43,28,12,5,33,38}

    Returns: "Exists"

  102. {18,10,40,36,29,45,39,34,12,0,8,18,30,13,4,11,32,4,45,24,20,23,24,2,3,32,8,34,40,23,10,18,23,23,11,39,32,26,9,24,36,1,35,21,30,41}

    {37,19,24,1,40,12,4,3,7,21,31,9,20,28,37,5,29,23,27,11,1,0,42,25,13,36,40,43,38,16,20,19,17,6,15,36,41,44,7,14,43,28,12,5,33,38}

    Returns: "Does not exist"

  103. {18,10,40,36,29,45,39,34,12,0,8,18,30,13,4,11,32,4,45,24,20,23,24,2,3,32,8,34,40,23,10,18,23,23,43,39,32,26,9,24,36,1,35,21,30,41}

    {37,19,24,1,40,12,4,3,7,21,31,9,20,28,37,5,29,23,27,11,1,0,42,25,13,36,40,43,38,16,20,19,17,6,15,36,41,44,7,14,43,28,12,5,33,38}

    Returns: "Does not exist"

  104. {11,37,29,41,11,31,35,2,21,1,9,23,22,4,29,14,11,8,0,23,45,0,43,23,6,42,30,44,31,45,8,27,25,43,28,22,9,41,32,13,21,28,40,12,31,39}

    {27,3,26,36,16,24,44,9,3,3,19,42,9,28,38,0,21,45,14,19,36,20,20,12,0,18,24,17,10,2,7,32,33,31,26,15,7,13,26,25,10,34,39,44,29,5}

    Returns: "Exists"

  105. {11,37,29,41,11,31,35,2,21,1,9,23,22,4,29,14,11,8,0,23,45,0,43,23,6,42,30,44,9,45,8,27,25,43,28,22,9,41,32,13,21,28,40,12,31,39}

    {27,3,26,36,16,24,44,9,3,3,19,42,9,28,38,0,21,45,14,19,36,20,20,12,0,18,24,17,10,2,7,32,33,31,26,15,7,13,26,25,10,34,39,44,29,5}

    Returns: "Exists"

  106. {11,37,29,41,11,31,35,2,21,1,9,23,22,4,29,14,11,8,0,23,45,0,43,23,6,42,30,44,9,45,8,27,25,43,28,22,9,41,5,13,21,28,40,12,31,39}

    {27,3,26,36,16,24,44,9,3,3,19,42,9,28,38,0,21,45,14,19,36,20,20,12,0,18,24,17,10,2,7,32,33,31,26,15,7,13,26,25,10,34,39,44,29,5}

    Returns: "Exists"

  107. {13,4,46,48,27,33,28,48,4,19,31,34,28,5,43,22,47,37,4,20,23,18,41,45,26,7,31,15,26,46,39,42,38,43,38,29,10,0,10,17,12,9,16,26,14,33,26,3,22}

    {5,11,1,35,21,43,16,14,37,3,46,40,45,28,15,48,34,38,32,24,27,32,44,16,33,21,30,31,2,4,36,23,5,1,8,39,45,18,48,40,22,6,11,5,34,25,18,31,5}

    Returns: "Exists"

  108. {13,4,46,48,27,33,28,48,4,19,31,34,28,5,43,22,47,37,4,20,23,18,41,45,26,7,31,15,26,46,39,42,38,43,38,29,10,45,10,17,12,9,16,26,14,33,26,3,22}

    {5,11,1,35,21,43,16,14,37,3,46,40,45,28,15,48,34,38,32,24,27,32,44,16,33,21,30,31,2,4,36,23,5,1,8,39,45,18,48,40,22,6,11,5,34,25,18,31,5}

    Returns: "Exists"

  109. {13,4,46,48,27,33,28,48,4,19,31,34,28,5,43,22,47,37,4,20,23,18,41,45,26,7,31,15,26,46,39,42,38,43,38,29,10,45,10,17,12,9,16,26,7,33,26,3,22}

    {5,11,1,35,21,43,16,14,37,3,46,40,45,28,15,48,34,38,32,24,27,32,44,16,33,21,30,31,2,4,36,23,5,1,8,39,45,18,48,40,22,6,11,5,34,25,18,31,5}

    Returns: "Exists"

  110. {22,20,37,27,20,27,32,0,40,28,21,2,4,7,28,26,24,23,39,26,17,19,21,9,13,39,18,22,9,40,14,33,26,27,15,30,3,26,27,41,17,2}

    {31,25,9,29,35,8,20,34,0,5,11,22,25,2,21,6,12,30,40,12,7,33,15,22,19,41,8,1,18,34,15,38,36,34,10,28,8,16,15,26,27,11}

    Returns: "Exists"

  111. {22,20,37,27,20,27,32,0,40,28,21,2,4,7,28,26,24,23,39,26,17,19,21,9,13,39,18,22,9,40,14,33,26,8,15,30,3,26,27,41,17,2}

    {31,25,9,29,35,8,20,34,0,5,11,22,25,2,21,6,12,30,40,12,7,33,15,22,19,41,8,1,18,34,15,38,36,34,10,28,8,16,15,26,27,11}

    Returns: "Exists"

  112. {22,20,37,27,20,27,32,0,40,28,21,2,4,7,28,26,24,23,39,26,17,19,21,9,13,39,18,22,9,40,14,33,2,8,15,30,3,26,27,41,17,2}

    {31,25,9,29,35,8,20,34,0,5,11,22,25,2,21,6,12,30,40,12,7,33,15,22,19,41,8,1,18,34,15,38,36,34,10,28,8,16,15,26,27,11}

    Returns: "Exists"

  113. {43,42,14,36,3,4,43,0,8,37,14,33,18,21,32,35,12,16,26,24,31,40,41,27,14,38,8,40,15,19,13,16,19,36,39,23,23,39,9,4,31,20,31,7}

    {8,5,4,28,18,37,21,41,6,5,11,29,40,34,39,19,17,23,3,31,35,20,12,32,30,31,25,2,1,22,18,15,2,18,19,33,19,11,10,34,40,2,37,13}

    Returns: "Exists"

  114. {31,17,10,6,10,7,4,44,46,37,34,21,14,14,23,43,37,41,31,46,5,1,40,27,28,30,29,33,22,3,19,15,15,32,20,38,0,24,2,9,9,5,20,10,34,42,20}

    {15,6,35,18,39,33,40,18,43,41,2,10,40,23,4,23,30,7,13,36,5,33,17,43,16,19,5,11,19,25,3,12,18,45,43,5,3,20,12,2,8,30,4,0,5,22,46}

    Returns: "Does not exist"

  115. {30,13,22,14,7,17,32,13,40,35,11,21,34,38,8,33,34,31,31,10,26,41,24,7,27,5,9,0,26,3,41,25,12,15,19,24,41,6,41,30,3,28}

    {36,16,23,5,12,15,39,0,2,30,37,36,2,24,40,24,8,4,18,37,1,29,20,2,37,27,18,17,15,12,32,41,30,25,23,27,23,34,10,19,28,18}

    Returns: "Exists"

  116. {44,8,17,33,5,10,4,41,32,37,9,17,5,41,22,27,43,12,4,32,10,39,10,33,6,38,19,45,35,1,12,28,36,11,28,42,18,9,38,8,32,25,3,13,44,8}

    {41,1,11,45,10,40,15,14,15,5,16,36,17,31,35,43,7,6,19,17,26,30,4,0,35,30,2,21,10,34,12,42,21,26,10,20,26,6,36,23,24,29,7,28,44,2}

    Returns: "Exists"

  117. {6,39,17,2,35,15,34,30,13,11,1,0,28,28,15,8,4,26,32,32,14,33,29,13,14,38,9,16,19,20,29,26,17,30,14,40,2,38,9,12,13}

    {19,3,20,29,7,18,18,35,16,14,7,31,40,18,24,38,33,15,39,33,25,23,21,36,37,1,5,25,27,29,2,7,26,11,0,20,31,32,33,10,30}

    Returns: "Does not exist"

  118. {34,5,19,38,20,18,33,2,42,20,1,8,9,21,22,19,11,42,32,5,27,39,14,6,23,7,22,0,9,34,30,26,12,30,13,9,22,39,18,32,24,7,28,15}

    {36,35,25,8,24,40,24,3,7,10,29,33,32,27,35,32,15,15,5,14,32,19,31,19,35,17,4,24,21,32,41,22,6,5,28,8,16,10,8,31,37,31,23,32}

    Returns: "Does not exist"

  119. {1,2,3,4,5,27,7,8,9,10,11,12,13,14,15,16,17,1,19,20,21,22,23,24,25,26,27,28,31,30,31,32,33,34,35,36,37,38,36,40,40}

    {37,9,36,31,29,16,27,7,2,31,35,37,2,30,1,7,13,10,14,4,15,19,38,35,32,11,15,1,28,38,2,3,15,20,8,24,27,40,28,10,40}

    Returns: "Does not exist"

  120. {1,2,25,4,5,6,7,8,9,0,11,14,13,14,15,30,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,46}

    {23,40,25,2,20,9,21,13,41,16,4,31,36,11,1,42,27,15,4,24,39,8,45,46,7,20,0,40,42,46,1,45,41,45,43,0,24,13,42,24,25,5,1,2,21,3,26}

    Returns: "Does not exist"

  121. {1,2,3,4,5,6,7,8,27,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,14,36,37,38,40,40,41,41}

    {3,7,31,24,21,31,35,19,6,24,0,26,5,23,7,21,4,38,12,8,3,23,11,0,34,24,36,39,22,36,36,36,11,7,11,32,36,26,0,16,22,13}

    Returns: "Does not exist"

  122. {1,2,3,9,5,6,7,8,9,10,11,45,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,5,41,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,48}

    {27,21,20,6,5,32,48,44,37,42,5,30,44,30,8,3,34,19,5,31,38,25,15,18,35,14,15,46,48,10,28,24,18,33,5,12,5,36,37,24,43,14,14,16,31,29,45,33,13}

    Returns: "Does not exist"

  123. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9,33,28,35,36,37,38,39,3,41,42,43,44,45,46,47,48,49,28}

    {24,40,2,2,1,5,9,6,16,24,6,32,29,6,33,19,39,17,17,24,24,16,12,33,4,38,45,29,2,18,13,40,1,31,49,8,4,46,40,14,15,30,42,10,37,3,43,17,3,35}

    Returns: "Does not exist"

  124. {1,23,37,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,17,40,41,42,43,44,45,45}

    {15,32,27,5,45,4,45,16,42,43,20,6,37,7,8,35,30,33,42,32,12,42,25,4,21,22,18,21,35,38,14,35,10,45,37,0,16,28,17,43,8,29,12,40,31,19}

    Returns: "Does not exist"

  125. {1,2,3,4,5,16,7,8,9,10,11,12,13,14,15,16,17,18,9,20,21,22,23,25,25,26,27,28,29,30,31,32,21,34,35,36,37,38,39,40,41,42,43,43}

    {37,19,37,2,34,1,26,40,25,42,3,16,30,5,5,13,12,31,31,6,1,3,10,8,40,18,37,30,22,26,42,8,12,4,2,38,23,7,25,30,18,13,16,42}

    Returns: "Does not exist"

  126. {1,2,3,4,5,6,7,8,9,10,32,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,23,28,29,30,31,32,33,34,25,36,39,38,39,40,41,41}

    {20,20,18,5,18,10,35,38,15,25,16,38,5,27,33,11,25,14,33,20,21,22,35,11,38,34,25,27,17,34,35,16,5,15,16,4,3,6,2,21,11,25}

    Returns: "Does not exist"

  127. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,24,21,22,23,24,25,32,34,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,1,44,45,45}

    {31,15,1,11,22,41,38,13,30,43,30,45,1,9,32,28,41,28,9,3,39,30,4,43,37,44,9,6,17,7,15,5,7,38,37,34,37,39,31,41,35,2,10,45,40,17}

    Returns: "Does not exist"

  128. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,11,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,34,4,38,39,40,41,10}

    {29,29,12,21,20,29,14,5,20,17,22,31,35,11,39,11,15,36,30,29,5,17,9,32,34,36,38,35,34,25,13,25,6,39,17,20,1,41,2,39,26,11}

    Returns: "Does not exist"

  129. {1,2,3,4,5,27,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,40}

    {37,9,36,31,29,16,27,7,2,31,35,37,2,30,1,7,13,10,14,4,15,19,38,35,32,11,15,1,28,38,2,3,5,20,8,24,27,40,28,10,40}

    Returns: "Does not exist"

  130. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,3,45,46,47,48,49,49}

    {1,31,17,0,45,38,42,26,17,39,25,24,43,5,37,8,20,3,29,25,14,9,22,19,30,3,0,11,8,18,19,36,1,4,7,14,15,21,32,13,38,33,15,42,7,21,24,46,10,15}

    Returns: "Does not exist"

  131. {1,2,3,4,5,35,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,45}

    {28,14,16,6,34,37,37,29,3,6,26,44,37,27,39,39,2,43,17,41,11,2,32,44,12,31,43,1,7,44,2,16,28,31,1,39,4,8,26,38,23,10,24,24,4,21}

    Returns: "Exists"

  132. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,15,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,42}

    {19,36,8,12,13,28,37,23,15,20,28,2,17,21,28,27,11,18,40,32,1,7,26,31,11,6,28,18,40,24,32,35,12,37,14,37,6,1,40,31,40,21,24}

    Returns: "Does not exist"

  133. {1,2,3,4,5,6,7,8,11,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,43}

    {1,5,11,14,13,38,27,24,19,32,1,22,34,3,39,30,20,36,14,35,18,21,36,38,6,40,0,20,32,33,15,20,38,24,12,3,9,11,4,26,16,32,32,3}

    Returns: "Exists"

  134. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,9,49}

    {39,17,8,24,24,16,12,33,4,38,45,29,2,18,13,40,1,31,49,8,4,46,40,14,15,30,42,10,37,3,43,17,3,35,33,28,49,28,31,9,39,3,18,17,35,25,10,37,11,21}

    Returns: "Exists"

  135. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,12,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,44}

    {14,32,30,30,40,21,32,38,40,12,6,35,43,35,38,28,38,27,25,17,15,25,33,22,33,24,30,25,0,41,5,44,19,37,28,33,17,15,12,22,29,8,2,41,27}

    Returns: "Exists"

  136. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,5,43}

    {5,37,19,37,2,34,1,26,40,25,42,3,16,30,5,5,13,12,31,31,6,1,3,10,8,40,18,37,30,22,26,42,8,12,4,2,38,23,7,20,30,18,13,16}

    Returns: "Does not exist"

  137. {1,2,3,4,5,6,7,8,9,10,8,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,42}

    {16,20,8,36,17,30,15,41,35,9,25,3,19,39,18,8,22,34,21,4,42,21,20,1,16,6,2,34,4,37,29,20,12,31,40,34,1,32,13,29,25,20,26}

    Returns: "Does not exist"

  138. {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,34,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,49}

    {24,12,27,49,33,48,5,12,20,42,7,10,25,40,23,25,41,39,25,21,16,23,10,21,32,23,0,12,37,5,4,18,31,6,19,21,33,34,10,3,21,18,37,30,21,41,31,9,29,26}

    Returns: "Exists"

  139. {2,12,7,6,9,11,7,3,3,11,1,8,4,13}

    {0,7,13,10,12,3,7,6,12,8,9,1,1,11}

    Returns: "Does not exist"

  140. {8,6,9,13,8,14,10,1,11,14,15,1,14,1,9,9}

    {10,5,11,7,14,5,9,7,13,5,1,2,4,14,14,7}

    Returns: "Does not exist"

  141. {11,10,8,13,3,4,8,1,7,3,3,10,14,10,15,5}

    {0,12,2,1,0,1,4,3,13,10,6,12,10,1,3,8}

    Returns: "Does not exist"

  142. {5,6,0,5,5,4,2,0}

    {2,3,6,3,2,4,5,3}

    Returns: "Does not exist"

  143. {0}

    {0}

    Returns: "Exists"

  144. {2,4,3,0,3}

    {1,3,4,1,1}

    Returns: "Exists"

  145. {4,7,5,14,1,10,6,15,13,3,5,3,6,4,10,1,17,9}

    {11,6,2,14,15,1,0,2,9,15,4,8,10,13,3,11,8,3}

    Returns: "Does not exist"

  146. {7,7,4,0,4,1,0,20,11,5,3,13,2,5,10,18,8,4,14,6,19,21,14}

    {17,11,14,2,12,3,22,13,22,6,20,7,3,5,8,9,19,18,21,10,7,19,20}

    Returns: "Does not exist"

  147. {1,10,22,19,21,21,21,3,20,20,1,13,14,13,13,1,11,0,3,5,9,4,18}

    {11,20,20,14,18,22,20,8,7,6,19,16,0,16,5,12,18,3,4,0,11,8,11}

    Returns: "Does not exist"

  148. {0,9,4,1,3,0,13,11,13,3,15,8,7,8,7,7}

    {12,13,10,15,13,0,5,12,5,12,14,4,15,5,15,15}

    Returns: "Does not exist"

  149. {0,0}

    {0,0}

    Returns: "Does not exist"

  150. {2,3,8,7,15,2,15,14,5,0,15,9,13,2,12,6,6,3}

    {13,11,9,17,9,7,5,16,4,10,3,4,10,17,5,12,11,9}

    Returns: "Does not exist"

  151. {0,1}

    {1,1}

    Returns: "Exists"

  152. {0,6,2,6,5,6,5,5,2}

    {8,1,8,8,4,2,1,3,5}

    Returns: "Does not exist"

  153. {0}

    {0}

    Returns: "Exists"

  154. {18,20,14,13,0,20,17,5,13,14,13,16,14,7,20,7,8,7,6,20,12}

    {18,6,6,15,18,9,20,19,4,5,10,6,11,19,19,19,12,16,12,18,14}

    Returns: "Does not exist"

  155. {4,0,3,4,3,1}

    {0,5,3,3,5,0}

    Returns: "Does not exist"

  156. {5,0,9,6,4,12,8,4,1,13,2,16,6,3,4,4,14}

    {5,13,14,5,9,13,5,2,16,5,4,15,1,14,11,7,11}

    Returns: "Does not exist"

  157. {1,3,0,4,5,0,10,7,1,4,7,4}

    {9,3,8,9,5,0,10,5,8,8,5,9}

    Returns: "Does not exist"

  158. {9,3,8,11,22,18,17,7,20,15,19,1,8,21,15,0,9,11,3,16,20,5,16,10,10}

    {19,17,21,10,0,13,13,15,4,9,1,23,3,15,12,10,15,4,20,3,0,3,22,0,2}

    Returns: "Does not exist"

  159. {0}

    {0}

    Returns: "Exists"

  160. {0,1,1}

    {1,2,2}

    Returns: "Exists"

  161. {11,4,8,1,9,6,9,6,8,8,8,2,12}

    {8,4,6,12,4,7,2,3,9,9,6,1,5}

    Returns: "Does not exist"

  162. {5,3,4,0,2,1}

    {2,1,5,2,2,1}

    Returns: "Exists"

  163. {3,5,1,3,3,4}

    {0,2,1,4,4,5}

    Returns: "Does not exist"

  164. {4,2,17,1,19,0,11,15,19,19,17,15,10,14,9,11,7,5,3,16}

    {2,8,3,18,14,0,3,18,6,10,19,2,13,6,17,5,13,18,7,5}

    Returns: "Does not exist"

  165. {18,19,13,19,15,10,11,18,1,4,2,4,2,4,7,14,0,3,5,19}

    {4,17,18,3,15,6,8,9,1,18,12,2,1,0,9,19,4,8,8,1}

    Returns: "Does not exist"

  166. {0}

    {0}

    Returns: "Exists"

  167. {4,2,10,1,9,7,10,8,0,12,11,5,0}

    {12,11,5,0,7,2,12,4,12,5,12,11,8}

    Returns: "Does not exist"

  168. {6,0,12,2,2,6,10,0,1,11,0,4,0}

    {11,7,2,5,6,0,10,6,7,7,4,11,2}

    Returns: "Does not exist"

  169. {6,16,22,10,27,24,10,1,12,3,1,10,2,25,10,20,11,27,1,25,2,10,27,15,6,2,10,16,2}

    {18,8,12,2,1,22,2,12,20,1,4,19,27,22,25,4,13,16,16,1,18,28,11,12,23,9,24,2,0}

    Returns: "Does not exist"

  170. {2,1,5,4,2,6,2}

    {4,5,0,4,4,1,2}

    Returns: "Does not exist"

  171. {7,11,5,5,6,4,1,12,2,7,6,12,4}

    {12,12,11,10,5,4,7,11,3,11,2,8,10}

    Returns: "Does not exist"

  172. {10,7,1,7,2,11,7,12,2,3,9,10,1}

    {4,10,1,11,1,7,7,12,8,8,4,9,0}

    Returns: "Does not exist"

  173. {1,16,6,13,3,15,6,26,22,22,14,10,0,22,0,23,2,15,1,17,7,5,26,6,13,1,3,20}

    {17,1,26,1,22,1,26,15,9,2,20,20,11,20,18,19,24,7,18,15,3,5,18,12,25,15,9,0}

    Returns: "Does not exist"

  174. {2,5,8,8,7,4,6,1,6}

    {1,8,2,1,0,5,7,6,6}

    Returns: "Does not exist"

  175. {4,15,8,0,5,15,2,3,2,15,14,15,15,3,12,1}

    {3,8,10,15,12,3,9,12,4,7,11,9,3,11,15,13}

    Returns: "Does not exist"

  176. {3,21,5,5,0,28,13,27,17,11,22,0,3,3,5,17,3,4,19,3,12,1,24,0,0,6,3,21,16}

    {17,14,25,15,26,20,19,23,23,3,6,25,18,18,0,21,10,25,26,27,7,10,12,20,18,3,12,25,15}

    Returns: "Does not exist"

  177. {1,0,5,0,4,3}

    {3,5,5,4,0,5}

    Returns: "Does not exist"

  178. {1,10,14,5,1,6,18,21,21,11,3,0,4,17,5,21,14,11,1,13,8,8}

    {18,19,17,0,2,18,16,16,16,15,3,8,20,19,19,10,0,5,2,18,17,11}

    Returns: "Does not exist"

  179. {1,2,2,0,3}

    {1,1,2,3,1}

    Returns: "Does not exist"

  180. {11,5,10,3,2,5,9,2,4,4,11,4}

    {10,5,5,2,6,0,5,3,5,6,5,3}

    Returns: "Does not exist"

  181. {18,3,15,5,14,3,3,14,2,7,11,19,4,19,11,19,7,8,3,8,4,18}

    {13,0,1,18,9,6,6,1,16,9,15,18,11,20,6,7,7,5,5,12,19,19}

    Returns: "Does not exist"

  182. {11,3,0,9,6,9,5,4,3,8,6,12,1,0}

    {4,8,12,10,9,4,4,11,1,0,3,8,2,11}

    Returns: "Does not exist"

  183. {5,2,14,2,8,0,14,2,12,0,10,12,8,13,15,7}

    {10,13,12,5,11,4,7,9,5,8,12,9,3,4,7,5}

    Returns: "Does not exist"

  184. {2,3,5,3,3,0}

    {3,3,5,0,1,4}

    Returns: "Exists"

  185. {0,6,7,5,5,13,5,12,13,11,10,16,6,0,14,2,10}

    {4,5,16,10,10,0,0,5,8,0,13,14,0,16,7,13,9}

    Returns: "Does not exist"

  186. {5,3,1,4,2,2,1,3}

    {0,1,2,5,5,1,0,3}

    Returns: "Does not exist"

  187. {5,7,4,17,14,10,10,22,5,14,9,10,19,17,8,12,10,16,11,18,6,14,6}

    {18,13,10,0,10,7,12,2,4,7,15,9,22,13,1,11,15,7,8,4,8,1,11}

    Returns: "Does not exist"

  188. {7,6,7,1,4,4,6,1,8}

    {5,5,6,8,7,3,0,1,2}

    Returns: "Exists"

  189. {5,4,3,1,3,4,2}

    {3,6,3,3,2,4,3}

    Returns: "Exists"

  190. {4,22,9,1,16,16,3,16,7,2,5,4,13,12,1,16,22,3,7,22,23,26,19,5,0,3,13}

    {9,6,21,14,17,16,21,22,6,17,19,14,5,22,7,21,25,10,7,24,7,11,13,17,20,23,23}

    Returns: "Does not exist"

  191. {3,9,9,7,2,6,3,6,1,5}

    {1,4,0,2,3,3,3,1,7,3}

    Returns: "Does not exist"

  192. {2,0,3,2,4,6,5}

    {4,4,5,1,2,6,3}

    Returns: "Exists"

  193. {11,6,16,12,0,19,7,6,2,14,7,5,1,2,5,2,7,11,14,15}

    {0,11,6,10,5,14,10,10,6,3,15,0,19,8,18,14,16,7,17,5}

    Returns: "Does not exist"

  194. {13,6,13,14,8,18,1,15,7,7,6,9,12,13,1,17,17,2,1}

    {17,3,1,3,8,11,15,10,9,12,5,16,18,6,9,12,7,17,2}

    Returns: "Does not exist"

  195. {18,4,5,23,13,18,4,28,19,27,13,24,26,21,26,13,9,24,10,25,12,4,14,1,18,15,8,28,16}

    {2,21,21,20,11,15,27,15,18,22,16,10,1,0,28,8,4,15,8,27,22,15,1,8,6,7,4,8,23}

    Returns: "Does not exist"

  196. {17,17,11,2,11,6,0,11,10,8,21,19,6,22,3,7,17,18,1,24,7,10,10,11,12}

    {14,2,3,4,3,6,11,22,14,19,9,17,10,13,21,14,1,3,7,22,15,6,17,4,0}

    Returns: "Does not exist"

  197. {5,6,7,4,4,6,5,0}

    {5,7,0,3,3,4,2,6}

    Returns: "Does not exist"

  198. {16,6,13,8,7,15,0,5,13,0,9,14,18,19,17,9,6,8,7,2}

    {13,16,4,8,13,15,16,11,2,19,7,19,18,19,15,10,19,11,17,17}

    Returns: "Does not exist"

  199. {15,26,3,19,2,21,0,5,21,13,25,18,20,14,20,17,21,5,19,19,25,1,18,3,24,6,6}

    {9,4,3,6,5,12,16,12,22,6,13,14,14,25,12,25,1,26,23,22,13,16,10,6,5,0,25}

    Returns: "Does not exist"

  200. {3,9,3,3,8,8,0,5,7,8}

    {4,7,5,5,7,4,6,8,9,6}

    Returns: "Does not exist"

  201. {10,6,17,21,12,7,13,16,18,16,17,11,9,12,17,20,17,12,13,3,14,1,4}

    {7,18,6,10,16,21,12,0,12,9,9,12,12,6,2,15,2,17,21,1,16,18,3}

    Returns: "Does not exist"

  202. {0}

    {0}

    Returns: "Exists"

  203. {3,11,5,8,4,1,4,7,3,6,12,12,1,16,9,0,6,14,2}

    {9,8,17,12,2,5,2,14,9,2,0,13,2,11,5,8,11,14,1}

    Returns: "Does not exist"

  204. {2,20,8,8,10,7,18,12,4,4,20,1,17,12,1,2,17,10,23,17,8,10,0,2,24}

    {7,10,13,3,9,22,21,20,16,3,24,24,15,15,18,13,2,12,18,9,20,21,3,4,1}

    Returns: "Does not exist"

  205. {2,0,4,3,1,5}

    {1,2,2,5,1,2}

    Returns: "Does not exist"

  206. {4,1,1,3,17,8,20,2,11,3,22,20,0,24,7,15,12,10,8,7,12,4,9,12,22}

    {20,13,14,22,4,6,1,16,19,7,22,1,10,7,22,20,6,20,8,22,14,0,13,7,12}

    Returns: "Does not exist"

  207. {18,14,28,0,17,24,0,26,21,1,3,25,29,27,14,21,22,22,24,13,16,21,7,10,23,21,19,21,15,28}

    {0,9,13,11,25,12,27,21,5,25,17,24,9,23,18,18,4,20,13,18,29,6,5,27,16,7,18,13,9,23}

    Returns: "Does not exist"

  208. {16,6,9,2,4,9,2,7,16,6,6,2,13,3,6,11,3}

    {1,2,15,9,10,6,0,6,7,11,10,2,9,12,9,1,2}

    Returns: "Does not exist"

  209. {1, 2, 0, 4, 4, 5 }

    {1, 2, 3, 5, 4, 5 }

    Returns: "Does not exist"

  210. {1, 1, 2 }

    {2, 1, 2 }

    Returns: "Does not exist"

  211. {1, 0, 3, 4, 5, 0, 7, 8, 0, 10, 11, 12, 0, 14, 0, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 0, 27, 0, 0, 30, 0, 0, 33, 0, 35, 36, 37, 38, 39, 40, 0, 42, 43, 0, 45, 0, 0, 0, 0, 0 }

    {0, 2, 0, 0, 0, 6, 0, 0, 9, 0, 0, 0, 13, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 24, 25, 26, 0, 28, 29, 0, 31, 32, 0, 34, 0, 0, 0, 0, 0, 0, 41, 0, 0, 44, 0, 46, 47, 48, 49, 0 }

    Returns: "Exists"

  212. {1, 2, 3, 3, 4 }

    {1, 2, 4, 3, 4 }

    Returns: "Does not exist"

  213. {1, 3, 3, 3 }

    {2, 3, 3, 3 }

    Returns: "Does not exist"

  214. {0, 2, 3, 0 }

    {2, 3, 0, 3 }

    Returns: "Does not exist"

  215. {1, 2, 2, 4, 4 }

    {3, 2, 2, 4, 4 }

    Returns: "Does not exist"

  216. {1, 2, 2, 3, 4 }

    {3, 1, 2, 4, 1 }

    Returns: "Exists"

  217. {1, 3, 3, 4, 3 }

    {2, 4, 4, 4, 3 }

    Returns: "Does not exist"


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: