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 n multisets numbered from 1 to n . Each of them is initially empty. Then, q events happen; each of them is in one of the four possible types:
- 1 x v — set the x -th multiset to a singleton {v} .
- 2 x y z — set the x -th multiset to a union of the y -th and the z -th multiset. For example: {1,3}∪{1,4,4}={1,1,3,4,4} .
- 3 x y z — set the x -th multiset to a product of the y -th and the z -th multiset. The product A×B of two multisets A , B is defined as {gcd(a,b)∣a∈A,b∈B} , where gcd(p,q) is the greatest common divisor of p and q . For example: {2,2,3}×{1,4,6}={1,2,2,1,2,2,1,1,3} .
- 4 x v — the participant is asked how many times number v occurs in the x -th multiset. As the quiz turned out to be too hard in the past, participants should now give the answers modulo 2 only.
Note, that x , y and z described above are not necessarily different. In events of types 2 and 3 , 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 4 -th type?
输入格式
The first line contains two integers n and q ( 1≤n≤105 , 1≤q≤106 ) — the number of multisets and the number of events.
Each of the following q lines describes next event in the format given in statement. It's guaranteed that 1≤x,y,z≤n and 1≤v≤7000 always holds.
It's guaranteed that there will be at least one event of the 4 -th type.
输出格式
Print a string which consists of digits 0 and 1 only, and has length equal to the number of events of the 4 -th type. The i -th digit of the string should be equal to the answer for the i -th query of the 4 -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; i is the number of queries processed so far: