Hi, I have no idea how to solve this problem. can anyone help me?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Hi, I have no idea how to solve this problem. can anyone help me?
Name |
---|
Every positive number can be represented as a form like this: 2^x * 3^y * z, where z is not divisible by 2 and 3.
Let's suppose that n = 2^x * 3^y * z. Then we cannot have 2n = 2^(x+1) * 3^y * z and 3n = 2^x * 3^(y+1) * z in set S.
Now, let's define a plane P[z]. For each number 2^x * 3^y * z, draw a point in P[z]. Then, the problem will be solvable :)
Sorry for the poor English.
We can have 2n and 3n in set S if we didn't include n in set S.
can you code your idea please to make me understand your idea very well.
Sorry for my mistake..
Let's suppose that
n = 2^x * 3^y * z
. (wherez
is not divisible by 2 and 3) If we includen
in setS
, we cannot have2n = 2^(x+1) * 3^y * z
and3n = 2^x * 3^(y+1) * z
in setS
.Let's define a plane
P[z]
wherez
is not divisible by 2 and 3. For each positive integeri = 2^x * 3^y * z (<= N)
, draw a point(x, y)
atP[z]
.If we select the point
(x, y)
inP[z]
, then we cannot select the point(x+1, y)
and(x, y+1)
inP[z]
. So the problem is: how many ways can we choose points such that the condition above is satisfied?The value of
x
andy
are very small, so we can do this in DP.Good idea, but how to do this in DP effectively, notice that we have n/3 numbers less than n that not divisible by 2 and 3 and we have 500 test cases per input.
You can use bitmasks.. It needs more complex solution than just bitmasking. Think about it :)