CF1097F.Alex and a TV Show

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Alex decided to try his luck in TV shows. He once went to the quiz named "What's That Word?!". After perfectly answering the questions "How is a pseudonym commonly referred to in the Internet?" ("Um... a nick?"), "After which famous inventor we name the unit of the magnetic field strength?" ("Um... Nikola Tesla?") and "Which rock band performs "How You Remind Me"?" ("Um... Nickelback?"), he decided to apply to a little bit more difficult TV show: "What's in This Multiset?!".

The rules of this TV show are as follows: there are nn multisets numbered from 11 to nn . Each of them is initially empty. Then, qq events happen; each of them is in one of the four possible types:

  • 1 x v — set the xx -th multiset to a singleton {v}\{v\} .
  • 2 x y z — set the xx -th multiset to a union of the yy -th and the zz -th multiset. For example: {1,3}{1,4,4}={1,1,3,4,4}\{1, 3\}\cup\{1, 4, 4\}=\{1, 1, 3, 4, 4\} .
  • 3 x y z — set the xx -th multiset to a product of the yy -th and the zz -th multiset. The product A×BA \times B of two multisets AA , BB is defined as {gcd(a,b)aA,bB}\{ \gcd(a, b)\, \mid\, a \in A,\, b \in B \} , where gcd(p,q)\gcd(p, q) is the greatest common divisor of pp and qq . For example: {2,2,3}×{1,4,6}={1,2,2,1,2,2,1,1,3}\{2, 2, 3\} \times \{1, 4, 6\}=\{1, 2, 2, 1, 2, 2, 1, 1, 3\} .
  • 4 x v — the participant is asked how many times number vv occurs in the xx -th multiset. As the quiz turned out to be too hard in the past, participants should now give the answers modulo 22 only.

Note, that xx , yy and zz described above are not necessarily different. In events of types 22 and 33 , the sum or the product is computed first, and then the assignment is performed.

Alex is confused by the complicated rules of the show. Can you help him answer the requests of the 44 -th type?

输入格式

The first line contains two integers nn and qq ( 1n1051 \leq n \leq 10^5 , 1q1061 \leq q \leq 10^6 ) — the number of multisets and the number of events.

Each of the following qq lines describes next event in the format given in statement. It's guaranteed that 1x,y,zn1 \leq x,y,z \leq n and 1v70001 \leq v \leq 7000 always holds.

It's guaranteed that there will be at least one event of the 44 -th type.

输出格式

Print a string which consists of digits 00 and 11 only, and has length equal to the number of events of the 44 -th type. The ii -th digit of the string should be equal to the answer for the ii -th query of the 44 -th type.

输入输出样例

  • 输入#1

    4 13
    1 1 1
    1 2 4
    1 3 6
    4 4 4
    1 4 4
    2 2 1 2
    2 3 3 4
    4 4 4
    3 2 2 3
    4 2 1
    4 2 2
    4 2 3
    4 2 4
    

    输出#1

    010101
    

说明/提示

Here is how the multisets look in the example test after each of the events; ii is the number of queries processed so far:

首页