시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB109383239.024%

문제

In programming contest circles, one of the most important roles is that of the Chief Equality Officer (CEO). This person is responsible for making sure that every team has an equal chance of winning the contest. Since last year’s NWERC the current CEO, Gregor, has thought at length about how to make the contest even more fair and equal.

His answer is to introduce a new programming language as the only one allowed for submissions. This way, no team will be disadvantaged by not having mastered any of the allowed languages. This language is called BALLOON, short for Building A Long List Of Ordinary Numbers. Its only data type is the list of integers. To keep the language fast, it contains only four instructions:

  • [x1,...,xn] is the constructor for lists. It returns the integers inside the brackets in their given order.
  • concat(<Expr1>,<Expr2>) returns a list of all the integers returned when evaluating the expression <Expr1> followed by all of the integers returned when evaluating <Expr2>.
  • shuffle(<Expr>) returns a list of all the integers returned by <Expr>, rearranged according to a uniformly random permutation, i.e., each permutation of the elements is used with equal probability.
  • sorted(<Expr>) returns a list of all the integers returned by <Expr>, rearranged into non-decreasing order.

As an example, consider the first expression of Sample Input 1. The two shuffle exressions both take the list [1,2] as input and return one of the lists [1,2] and [2,1], each with probability 0.5 (independently of each other). The outer concat operator takes the two returned lists as its input and returns their concatenation. I.e., it returns one of the lists [1,2,1,2], [1,2,2,1], [2,1,1,2], and [2,1,2,1], each with probability 0.25.

Naturally, we cannot use byte-by-byte output comparison any more when teams submit their solutions in BALLOON, as its output is probabilistic. The judge server instead has to check whether a submitted program is equivalent to the sample solution created by the judges. Two programs are equivalent if for any list L of integers, both programs have an equal probability of returning L.

It is your task to determine whether two given BALLOON programs are equivalent.

입력

The input consists of:

  • One line containing a string A, the first program.
  • One line containing a string B, the second program.

Each program is a syntactically valid BALLOON program with between 3 and 106 characters, and contains neither spacing nor empty lists (i.e., the strings “ ” or “[]” do not occur in the input).

Each integer in each program is greater than 0 and less than 109.

출력

If the two programs are equivalent, output “equal”, otherwise output “not equal”.

예제 입력 1

concat(shuffle([1,2]),shuffle([1,2]))
shuffle([1,2,1,2])

예제 출력 1

not equal

예제 입력 2

sorted(concat([3,2,1],[4,5,6]))
[1,2,3,4,5,6]

예제 출력 2

equal

예제 입력 3

concat(sorted([4,3,2,1]),shuffle([1]))
concat(concat([1,2,3],shuffle([4])),sorted([1]))

예제 출력 3

equal