问题4669--Radio

4669: Radio

[命题人 : ]
时间限制 : 3.000 sec  内存限制 : 512 MB

题目描述

In Croatia there are n radio stations. Each station has a concession on one of n frequencies denoted by positive integers from 1 to n. The frequencies were not chosen ideally so sometimes noise appears when multiple stations are broadcasting at the same time. To be more precise, if two radio stations, with frequencies a and b respectively, are broadcasting at the same time, noise will appear if a and b are not relatively prime. The listeners, of course, do not like the noise, so when they hear it they switch to another station. 
To solve this noise problem, the radio station owners are asking you to write a program which simulates the actions of the radio stations. Your program needs to support two types of queries: 
1. S x: If not currently broadcasting, the station with frequency x starts broadcasting, and if it is already broadcasting, it stops. 
2. C l r: Check if there exists a pair of broadcasting stations whose frequencies a and b are from the interval [l, r] and such that gcd(a, b) !=1. If such a pair exists, print DA, otherwise print NE.
 Initially, no station is broadcasting. 

输入

The first line contains positive integers n and q (1 ≤ n ≤ 1 000 000, 1 ≤ q ≤ 200 000), the number of radio stations (and frequencies), and the number of queries, respectively. 
The i-th of the next q lines contains a description of the i-th query. For queries of the first type it will hold that 1 ≤ x ≤ n, and for queries of the second type it will hold that 1 ≤ l ≤ r ≤ n

输出

Print the answers to the queries of the second type in order, in separate lines

样例输入 Copy

【样例输入1】
6 8
S 1
S 2
S 3
C 1 6
S 6
C 1 6
S 2
C 1 6
【样例输入2】
11 6
S 4
S 10
C 3 11
C 2 7
S 6
C 2 7
【样例输入3】
20 7
S 10
S 15
S 3
C 10 15
S 10
C 3 15
C 3 10

样例输出 Copy

【样例输出1】
NE
DA
DA
【样例输出2】
DA
NE
DA
【样例输出3】
DA
DA
NE

提示

Clarification of the first example: 
The stations broadcasting during the first C type query are 1, 2 and 3. These numbers are all relatively prime to each other so they create no noise. Once station 6 begins to broadcast, it creates noise with stations 2 and 3. After station 2 stops broadcasting the noise with station 3 persists.

来源/分类