Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
# | 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 | 165 |
2 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
Name |
---|
Maths. :) too maths. I get the idea for D, but didn't code it and will not code it even now. Too much implementation. haha!.
Looking at F solution. should this problem be in any contest. hmm.. I don't know. may be other people can tell :)
The problems were good, just +1 shift was needed.
True — the only motivation to code this is rating
agree that was very sad that i already write the code but there were a tiny implementation error and i got -11 rating but not +100 or something like that
Love math, so think that contest was cool... Except for the F task )
How can we solve the problem D using the Greedy approach?
IMO the aproach in the tutorial is the greedy approach because you always want the doll to move straight then turn right instead of turning right randomly. This could cover the graph as much as possible.
The greedyness here is: Go in the current direction as far as possible/allowed. Don't stop and turn earlier.
My submission. As you can see, I update pc or pr (position column/row) to the cell before the next obstacle. Also max/min/r/c are to enforce the spiral shape of the path, i.e. do not cross previously visited cells.
Why the greedy approach is working here? There must be a case where answer comes out to be different if we do right turn earlier then waiting for the obstacle.
Assume, that you turn right, although there is a cell in front of you. Then it is impossible in the future to visit that cell. That is because you would have to cross your path.
=> If there is a solution, then you must walk straight as long as possible
Can someone explain the tutorial of problem E? thats not clear for me
I don't fully understand the solution, but I can tell you my way.(Not much different from the solution)
Mark each $$$a_i$$$ given in the title to $$$(i,a_i)$$$ in the two-dimensional coordinate system as black. Start from $$$(0, x)$$$, and to reach $$$(n + 1, y)$$$, you can move right, right up or right down one grid at a time, and cannot pass through the black point.
For a starting point, we need to find the largest $$$y$$$ and the smallest $$$y$$$ that it can reach.
Let me take the largest $$$y$$$ as an example.
Because you need to go up and to the right as much as possible, you can get the position of the first black dot $$$(x0,y0)$$$ by Binary search the number on the slash (if not, you can go to the last column unimpeded).
Then you can only go to $$$(x0-1,y0-1)$$$, and then continue Binary search (in fact, you can preprocess an array, but this is not a problem). Find the first ordinate that is not $$$y0$$$. Point $$$(x1, y1)$$$, move to $$$(x1, y0)$$$ and continue the process.
But when $$$n = 1$$$, special judgment is required.
For specific implementation, please refer to my code.
Your solution has been hacked by me.
It will become $$$O(n^2logn)$$$ in some situations.
I'm so sorry that my program is wrong.That's because I've done similar problems before, so I subconsciously think that the time complexity is right.
I have modified my program. I store the final location of each point in the process with a map. If I encounter it again, I will jump to the end. This time complexity can be proved to be correct, because the number of points I encountered in the process is at most $$$m$$$.
My program can be optimized to $$$O(n+m)$$$, but I don't think it makes much sense.
At last, thank you for helping me find out the mistake.
why did the pretest for problem D not contain a case where you need to turn on the start field?
why should it?
normally you don't want thousand people to fail an implementation heavy task because they forgot one detail?
It's called edge cases. This task's difficulty was to correctly analyze the problem and implement it. I think that a pretest like that could help inadvertent a little bit too much.
In problem E, my method needs to judge the case of n = 1, but I didn't think of it.
The variance is equal to $$$E(X^2)-2E(X)^2+E(x)^2=E(X^2)-E(X)^2$$$ ,not $$$E(X^2)-E(X)$$$ .
can anyone explain problem B please?i am stuck :((
Think of it this way, from the box kind's perspective.
For each box kind, there are m boxes to go to. It can choose to go to 1 box (minimum) OR it can choose to go to 2 boxes OR 3 boxes..... OR all the boxes.
i.e. mC1 + mC2 + mC3 + ..... + mCm. (We add because since it's a single choice it can make i.e. it can choose to be in a single box OR it can choose to be in 2 boxes but not BOTH the choices).
By Binomial Theorem, mC1 + mC2 + mC3 + ..... + mCm equals 2^m -1 .
To calculate this for all the n box kinds, you got to multiple this n times. We multiply now because each box kind makes a choice independent of what the other box kind makes.
i.e. (2^m-1) ^ n.
Don't forget the modulo part.
Peace.
First, we can think about putting one present in m boxs, each box has two condition(put or not) ,so the res is 2^m, and we should subtract 1(all boxs are empty).(the answer one present in m boxs is 2^m-1)
Then we have n presents, so the amnswer is (2^m-1)^n,
my english isn't good, hope it's useful for you.
consider send the gifts to men. if there are 3 people. you can send this gift to:
person A
person Bperson C
person A,Bperson A,C
person B,c ` person a,b,c each gifts have 2^m-1 ways to send.because you can't send this gift 0 times; as there are n gifts in total,so the answer will be (2^m-1)^nCan someone pls explain C?
I can't understand problem E? who can do me a favor? Every guess influences what?
Math was my greatest weakness. I was afraid of Math. I wrote a shit ton of code in attempt to evaluate the answer without coming up with the formula. Finding workaround Math was always my approach.
But it seems that it didn't work for this round. Nor it will work often in general.
I shall not detest it any longer, and start embracing it from today. For my hatred only hinders my advance in CP.
Me too :'( , I've left contest after solving problem A
Auto comment: topic has been updated by Cirno_9baka (previous revision, new revision, compare).
Can someone explain me solution B?, please my maths is not to much mature yet
Think reversibly. consider
n = 1
(only one kind of present)More Mathematical approach
Hence
for General n
whats's the actual logic behind C.I could not understand the editorial of C. why a spiral representation of matrix works here?
if x increases, n-x decreases and vice versa
Why Spiral Pattern?
Can someone explain why such arrangement in C gives exactly floor(n^2 / 2) minimum? P. S. Proof is desirable.
Yeah so let's consider the f(1,2) where 1 means 1st row & 2 means 2nd row , now count it you can see the following pattern 0+2+2+4+4+6+6+... solve this you will get the desired result
I did problem C by filling NxN matrix with 1 to N^2 in a column-wise zig-zag manner and it passed. Can anyone please explain why this works?
D: wrong answer on test 219... E: add case n=1 -> AC so sad...
with all due respect but this contest wasn't a programming contest there were lots of math actually!
I had the idea for the solution to D during the contest, but the implementation was just too disgusting. If anybody managed to write it (relatively) concisely could you share me your answer?
How's this? 62842405
Hopefully it's clear enough, though I'm not sure how intuitive Kotlin code is if one isn't used to it
That's pretty clean, even compared to like the top ranks here. Thank you!
Help me with this python code getting RTE on Test case #6: https://codeforces.net/contest/1236/submission/62858367
I don't understand why?
for problem F, I think its should be the cycle instead of ring
Problem F is very cool :)
Hi guys, Can you help me please on task B.
Based on solution formula i wrote code in C# & Golang, but on test 3 i got errors: memory limit for C#, time limit on Golang. Can it be language limitation or its just code not optimized?
C#:
Golang:
Hi, I think you need a
fast pow
algorithm. The basicpow
operation's complexity is $$$O(n)$$$, and will get TLE since $$$1 \leq n, m \leq 10^9$$$. Besides, thebig
int operation is much slower and use more memory than theint64
operation.To avoid using
big
type, you can mod $$$10^9+7$$$ in every operation, so it won't get overflow. And instead of the basicpow
, usefast pow
(its complexity is $$$O(log\ n)$$$).Here's how to write
fast pow
algorithm in Go:I don't think this is the problem because he's using big-integer library functions (which I assume uses fast exponentiation); the problem is that he's not finding $$$2^m$$$ using the modulo, so the size of the big-integer blows up. (the end result could have $$$10^9 + 1$$$ bits!)
It is generally advisable though, as one gains CP experience, to roll their own small library/template for working with modulo operations using plain 32- or 64-bit integers, as that's significantly more performant than big-ints. (In Kotlin, I use the
inline class
feature to wrap integers in aModInt
class) The big-int overhead shouldn't be a problem for this puzzle though, since you're only implementing a simple formula.Finding $$$2^m$$$ should be done with the modulo too to prevent explosion of memory and time (memory on the order of $$$O(m)$$$, and time even worse)
Can anyone give a proof of this: “The number of connected components equals to the number of nodes minus the number of edges and then add the number of rings in it.” I wonder is this statement can only apply in cactus graph and what the 'rings' means here?
Can someone prove my solution for Problem C: https://codeforces.net/contest/1236/submission/191212045