怎样求common divisor 最快# JobHunting - 待字闺中
p*2
1 楼
下边这道题,我优化了半天也不行。有标准求common divisor的快速算法吗?
By 2312 there were n Large Hadron Colliders in the inhabited part of the
universe. Each of them corresponded to a single natural number from 1 to n.
However, scientists did not know what activating several colliders
simultaneously could cause, so the colliders were deactivated.
In 2312 there was a startling discovery: a collider's activity is safe if
and only if all numbers of activated colliders are pairwise relatively prime
to each other (two numbers are relatively prime if their greatest common
divisor equals 1)! If two colliders with relatively nonprime numbers are
activated, it will cause a global collapse.
Upon learning this, physicists rushed to turn the colliders on and off and
carry out all sorts of experiments. To make sure than the scientists'
quickness doesn't end with big trouble, the Large Hadron Colliders' Large
Remote Control was created. You are commissioned to write the software for
the remote (well, you do not expect anybody to operate it manually, do you?).
Initially, all colliders are deactivated. Your program receives multiple
requests of the form "activate/deactivate the i-th collider". The program
should handle requests in the order of receiving them. The program should
print the processed results in the format described below.
To the request of "+ i" (that is, to activate the i-th collider), the
program should print exactly one of the following responses:
"Success" if the activation was successful.
"Already on", if the i-th collider was already activated before the request.
"Conflict with j", if there is a conflict with the j-th collider (that is,
the j-th collider is on, and numbers i and j are not relatively prime). In
this case, the i-th collider shouldn't be activated. If a conflict occurs
with several colliders simultaneously, you should print the number of any of
them.
The request of "- i" (that is, to deactivate the i-th collider), should
receive one of the following responses from the program:
"Success", if the deactivation was successful.
"Already off", if the i-th collider was already deactivated before the
request.
You don't need to print quotes in the output of the responses to the
requests.
Input
The first line contains two space-separated integers n and m (1 ≤
8201;n, m ≤ 105) — the number of colliders and the
number of requests, correspondingly.
Next m lines contain numbers of requests, one per line, in the form of
either "+ i" (without the quotes) — activate the i-th collider, or "- i" (
without the quotes) — deactivate the i-th collider (1 ≤ i
8201;≤ n).
Output
Print m lines — the results of executing requests in the above given format
. The requests should be processed in the order, in which they are given in
the input. Don't forget that the responses to the requests should be printed
without quotes.
Sample test(s)
input
10 10
+ 6
+ 10
+ 5
- 10
- 5
- 6
+ 10
+ 3
+ 6
+ 3
output
Success
Conflict with 6
Success
Already off
Success
Success
Success
Success
Conflict with 10
Already on
By 2312 there were n Large Hadron Colliders in the inhabited part of the
universe. Each of them corresponded to a single natural number from 1 to n.
However, scientists did not know what activating several colliders
simultaneously could cause, so the colliders were deactivated.
In 2312 there was a startling discovery: a collider's activity is safe if
and only if all numbers of activated colliders are pairwise relatively prime
to each other (two numbers are relatively prime if their greatest common
divisor equals 1)! If two colliders with relatively nonprime numbers are
activated, it will cause a global collapse.
Upon learning this, physicists rushed to turn the colliders on and off and
carry out all sorts of experiments. To make sure than the scientists'
quickness doesn't end with big trouble, the Large Hadron Colliders' Large
Remote Control was created. You are commissioned to write the software for
the remote (well, you do not expect anybody to operate it manually, do you?).
Initially, all colliders are deactivated. Your program receives multiple
requests of the form "activate/deactivate the i-th collider". The program
should handle requests in the order of receiving them. The program should
print the processed results in the format described below.
To the request of "+ i" (that is, to activate the i-th collider), the
program should print exactly one of the following responses:
"Success" if the activation was successful.
"Already on", if the i-th collider was already activated before the request.
"Conflict with j", if there is a conflict with the j-th collider (that is,
the j-th collider is on, and numbers i and j are not relatively prime). In
this case, the i-th collider shouldn't be activated. If a conflict occurs
with several colliders simultaneously, you should print the number of any of
them.
The request of "- i" (that is, to deactivate the i-th collider), should
receive one of the following responses from the program:
"Success", if the deactivation was successful.
"Already off", if the i-th collider was already deactivated before the
request.
You don't need to print quotes in the output of the responses to the
requests.
Input
The first line contains two space-separated integers n and m (1 ≤
8201;n, m ≤ 105) — the number of colliders and the
number of requests, correspondingly.
Next m lines contain numbers of requests, one per line, in the form of
either "+ i" (without the quotes) — activate the i-th collider, or "- i" (
without the quotes) — deactivate the i-th collider (1 ≤ i
8201;≤ n).
Output
Print m lines — the results of executing requests in the above given format
. The requests should be processed in the order, in which they are given in
the input. Don't forget that the responses to the requests should be printed
without quotes.
Sample test(s)
input
10 10
+ 6
+ 10
+ 5
- 10
- 5
- 6
+ 10
+ 3
+ 6
+ 3
output
Success
Conflict with 6
Success
Already off
Success
Success
Success
Success
Conflict with 10
Already on