Hello! Codeforces Round 805 (Div. 3) will start at Jul/10/2022 17:35 (Moscow time). You will be offered 7-8 problems with expected difficulties to compose an interesting competition for participants with ratings up to 1600. However, all of you who wish to take part and have a rating of 1600 or higher, can register for the round unofficially.
The round will be hosted by rules of educational rounds (extended ACM-ICPC). Thus, solutions will be judged on preliminary tests during the round, and after the round, it will be a 12-hour phase of open hacks.
You will be given 7-8 problems and 2 hours and 15 minutes to solve them.
Note that the penalty for the wrong submission in this round (and the following Div. 3 rounds) is 10 minutes.
Remember that only the trusted participants of the third division will be included in the official standings table. As it is written by link, this is a compulsory measure for combating unsporting behavior. To qualify as a trusted participant of the third division, you must:
- take part in at least five rated rounds (and solve at least one problem in each of them),
- do not have a point of 1900 or higher in the rating.
Regardless of whether you are a trusted participant of the third division or not, if your rating is less than 1600, then the round will be rated for you.
Thanks to MikeMirzayanov for the platform, help with ideas for problems and for coordination of our work. Problems have been created and written by ITMO University teams: MikeMirzayanov, MisterGu, myav, Vladosiya, Aris, senjougaharin and me Gol_D.
Also many thanks to turmax, ivanz, antonis.white, Ronnie007, okwedook, oversolver, Kavaliro, antoshkin, omikad, yorky, Jostic11, Ziware, Kniaz, andrey.starodubtsev, Spaggetti and aniervs for testing the contest and valuable feedback.
Good luck!
UPD: Editorial
Auto comment: topic has been updated by Gol_D (previous revision, new revision, compare).
aniervs Chad <3
Excited. Hopefully I will solve problems and learn many things form this contest. Thank you for organizing this contest.
Eid Day contest for South Asians! <3
Not for all south Asians...........
++
Hoping that I can get out of gray tomorrow...
Hell of a plot twist in your rating graph, Orz
I managed to become a pupil despite under-performing heavily!
Eid Mubarak to evryone.
you to brother. where you from??
Bangladesh,you?
Very excited! Hoping to get a positive delta!!
Go away Respected Mr expert ,lemme play with my div3 :)
EID MUBARAK!
you can't forget div4's
First div 3 on a weekend since July 10,2021 (exactly 1 year ago!)
I like div.3 !!!
It's going to be fun solving doing #803 problems !!!
what topics to expect in problems C to D?
Greedy
Is div3 harder than div2 or eazier?
Div3 tasks easier than div2 tasks
Where are the "as a tester, blah blah blah" comments? Lol. Good luck guys!
There was a time when div3 was unrated for me )
It's time to restore those times then. Good luck!
Thank you bro )
fighting!!!
Very exited for speedforces for div 1 participants..
wish to be blue today :D
Specialists are least worried of their rating drop today, bcoz they hav div 4 coming soon to rescue in that case.
nice
my rating is less than 1600, still, it is showing unrated for me. why?
It is fixed!
The rated leaderboard has some expert users. Is the round rated for them?
same doubt
No
Excuse me, I'm all G2 checked, but I just changed the board. What should I do? Sorry, I'm only 2000 and can't add points
Round 805 —
cout << (ok ? "YES" : "NO");
E seems so easy , but not able to get Accepted :( . Frustration
Easier div3 but problems are also nice :p
Today's problem F — https://atcoder.jp/contests/abc254/tasks/abc254_h
Yeeeeep! No wonder i wrote it so smoothly.
...
No, the number of edges will be $$$n^2$$$ in worst case
...
For G2 what do we need to pre-calculate.
Lowest Common Ancestor
yes I thought about that but was not able to figure out actual process to solve query, I mean what to look for in the queries.
First, convert the tree into a rooted tree.
Let $$$d_i$$$ be the depth of a vertex $$$i$$$, and $$$u$$$ and $$$v$$$ be two vertices where $$$d_u <= d_v$$$.
For each $$$(u,v)$$$ pair, there are two cases:
Case 1: $$$lca(u,v) = u$$$ : This means that you are going "upwards" in a straight path and the path never goes down.
In this case, as long as $$$lca(u,v) = u$$$ is true, we are going upwards and every vertex is in the same path.
Case 2: $$$lca(u,v) = x$$$ : This means that the path is not a "vertical" straight line. It has broken into two paths from vertex $$$x$$$.
Now, it is clear that every new vertex $$$y$$$ must exist within the shortest path from $$$u$$$ to $$$v$$$. Otherwise, the set is not passable.
The vertex is present in the path if and only if:
Hey, I was seeing your G1 code, but not able to understand what you doing in the dfs func..coud you pls explain briefly? thanks
Binary lifting.
Written tutorial by AlexLuchianov
Video tutorial by Errichto
LCA using binary lifting at CP Algorithms
Excuse me, I'm all G2 checked, but I just changed the board. What should I do? Sorry, I'm only 2000 and can't add points
Sorry, what?
My G2 has been double checked. How can I appeal
I assume you mean your submissions have been skipped. I think you need to contact Mike about it.
Thank you for your comments
Although I didn't perform very well, I enjoyed the contest.
How to solve E?
Just use dsu. If cycle of odd length exists then the answer is NO.
I did it with 2SAT using Kosaraju's SCC algorithm.
Edit: Easy first check: Make sure no domino has the same number (e.g {3,3}) and no number is in more than 2 dominos ({1,2},{1,3},{1,4} since 1 appears 3 times).
Next, for each domino $$$i$$$, define a variable $$$x_i$$$ for if $$$x_i=true$$$ set domino $$$i$$$ in set 1 and $$$x_i=false$$$ to put it in set 2. Then for each two dominos $$$(i,j)$$$ that intersect ($$$O(1)$$$ per domino because of the checks above), add the 2 sat constraints $$$(x_i\lor x_j) \land (\lnot x_i \lor \lnot x_j)$$$. Then there is a valid satisfiability if and only if $$$x_i, \lnot x_i$$$ do not exist in the same strongly connected component.
Bipartite graph knowledge is needed to solve it.
Could you pls explain a little more..I know bipartite though...but i cant get that if a domino is {1,2} are we taking 1->2 as edge? if yes, then how we are partitioning them as they would come together in 1 set?
Each Domino is a node. And edge is when 2 dominos have a common element like {1, 2} and {2, 3}. Then basically we do graph coloring like assign Red color to node A and recursively assign Blue to all its neighbours since they cant be in same set. While doing this we are dividing the big set into 2 sets. If during recursion, the neighbors have same color : recursion fails and graph is non-bipartite and we cannot divide the big set into 2 sets.
Hope it clears things++
Bipartite Colouring
check if all the connected components in the graph formed by (ai, bi) as edges are bipartite, and also make sure that the degree of all nodes is at most 2
I just checked for degree of each node and the number of nodes in each connected component should be odd and it works fine no need for bipartite.
Problem G2 had appeared in CodeChef July Long 2021 K Path Query
I hate E.
Problem F: ABC254-H
Problem G can be found on Codechef — submission
No wonder I submitted my exact Code from long challenge without even touching it 1 bit and everything passed xD.
i got the desired output for question d and i am pretty confident that the logic is correct as well but in test 1 it showed an unexpected error "wrong answer Line [name=s] equals to "aa ", doesn't correspond to pattern "[a-z]{0,200000}" (test case 1)", i don't understand what this is, please tell me where i am wrong or if this is an issue on your end please fix it, here is my submission https://codeforces.me/contest/1702/submission/163545146
You are printing a space after string
Sorry to say but you made a very minute mistake of defining
endl as " \n" ( #define endl " \n" )
This is leading to an extra space character in each of the outputs and hence not matching the pattern.Thank you for replying, but I have been using this template since the beginning should I start using endl in place of \n?
Just remove the space before
\
in" \n".
Your AC code: 163581870Thank you
No, using
endl
would flushstdout
, which is definitely superfluous when it's redirected to somewhere rather than terminals.Instead, you might define
endl
to be'\n'
solely.For your reference.
We need to flush the stream only if there's an interactive problem on online judges.
Thank you
Really know little about string....I can only use the STL thus then I failed C and D while my code is ok on the test set x<
F= abc254,ex
YesNoForces
Solving E:
LOL, even after that I found a viable solution using graphs and cycle detection (any odd cycle detected = NO) else true. Graphs are not simple; but i kept them undirected ...But then the contest finn (more anguish)
I also solved E using set and got WA on test 2 but cannot figure out any counterexample can you please explain a counterexample where set fails.
{{1,2},{3,4},{3,5},{2,5},{4,6},{1,6}} We can partition as {{1,2},{3,5},{4,6}} and{{3,4},{2,5},{1,6}}. But your code will give NO
In B, I would have been happy to read something like "Poly does not remember letters from previous days". Or at least having a sample from that this detail would become clear.
In E it would have been helpfull to have an example of two dominoes that must not go into one group, like "if there is an domino {x,y} in one group, not other dominoe with x or y can go into the same group". Instead there are positive examples only, and no formular description.
Agree B...however didnt quite get you for the E one... I think there was an announcement too about this... Also, if anything they could add as a visible testcase, it could have been an example where changing the order of queries/dominos would result in a switch between NO/YES.
The phrase "all numbers on the dominoes of a set are different" was unclear to me. After having that read, I asked if {1,2} is same domino as {2,1}, which shows that I completly did not understand what was asked for.
https://atcoder.jp/contests/abc254/tasks/abc254_h
Nice F ;)
why a greedy method will fall for E? If no dup in set1, put in set1, if no dup in set2, put in set2. Otherwise, output No.
163580026
That would fail for a case like: (1 2), (3 4), (3 5), (2 5)
You cannot have 5 if n is 4.
Consider these pairs for N = 6
2 5
3 1
4 1
4 2
5 6
6 3
1 3
1 2
2 3
{{1,2},{3,4},{3,5},{2,5},{4,6},{1,6}} .By greedy method you will insert 1 2 in fisrt set then 3 4 also in first and 3 5 in second .After that you can't insert 2 5 in any of the two. But we can partition it as {(1 2)(3 5)(4 6)} and {(3 4)(2 5)(1 6)}
Did anyone have a prediction for 0 rating changes? I had on this round)!
Although I now hazily see that I should have used dsu for problem E, I don't clearly understand why my greedy approach wasn't accepted: 163579353
I can't see what kind of test case rendered it wrong since it's 6930th one down in the abyss. Can anyone raise an example?
Oh dear, n = 6, {1, 3}, {2, 3}, {4, 5}, {2, 5}, {4, 6}, {1, 6} leads to "NO" whereas it should actually output "YES". Self-satisfied.
look at my comment for greedy approach comment
well problem c was confusing for me.
Let us say for the test case:-
1
4 1
1 2 5 1
5 2
we can go from station 5 to 2 because we can go from 5 to 1 and then 1 to 2. So Answer should be yes.
It does not work like that. The train goes from 1 to 2 only in the first appearance of station 1, but going from 5 to 1 happens in the second appearance of 1.
wtf is with place 19?
In the last div 2 educational round, I can see red coders in the official standings
why can't I see a rating change like in your screenshot!!!
I am new to CF, Could you please help me.
It's an extension called carrot
I can't see a rating change even after installing the extension
you can cf predictor extension
unfortunately cf predictor is not working from a couple of days
Can anyone point out why this gives TLE on test case 6. I think the complexity is O(nlogn) at max and it should work. It would be of great help if anyone could point to what i am missing.
Try
res += i
instead ofres = res + i
.why? is second one slower than the first one?
Because first is just appending a char at the same address, whereas the second one is actually concatenating 2 strings and storing the entire result at the address.
Unfortunately.
A coincidence.
Great job on this round but we're still waiting for the tutorial hope it comes out fast also I want to ask problem E can it be solved using two sets and if not why
I don't think, try this test to get the idea :
1 2
4 5
2 3
3 4
5 6
6 1
problem E can be solved using greedy approach, check my comment
Why is this failing, Problem (E)
Bipartite coloring is used
Code
Thanks in Advance
Nodes Adjacent to a node must be in a different set, not u and v.
also, you have to check if some number occurs more than twice, e.g. n = 4, (1, 2), (2, 1), (2, 3), (5, 6)
if not to take it into account, your code will yield yes, as the graph is bipartite
It has been mentioned in the first line that a[i] and b[i] will be from 1 to n so you cannot take 5 and 6 for n=4
okay, the point was that 2 occurs more than two times, we can replace 5 6 for 3 4
Could you please give the final two sets for your testcase?
i've meant case like 4 (1 2) (2 1) (2 3) (3 4)
Okay, i misinterpreted What I was asking is could you give a testcase where the greedy solution fails but your solution passes?
try smth like this: 6 (1 3) (2 3) (4 5) (2 5) (4, 6) (1 6)
to be honest, i didn't even try to solve greedily
here is accepted submission with your code: https://codeforces.me/contest/1702/submission/163587320
you need to count occurences and make graph undirected instead of directed
you can also check my sumbission (but i've used dfs to color the graph) https://codeforces.me/contest/1702/submission/163524885
G2 is exactly the same as CodeChef KPATHQRY.
I understand that we find the endpoints of a possible simple path by sorting the k vertices of a query by depth. But how does it work to check if all other vertices are on the simple path between them?
You can check it using distance. Lets say your endpoints are $$$l$$$, $$$r$$$ and you want to check if vertex $$$u$$$ lies on the path. Then $$$u$$$ must follow,
epsilon decribed quite an elegant method but you can also do it with binary lifting/hld:
A simple path is only possible if all given nodes (except their LCA) has been marked exactly once.
Hi everyone , can any explain why I'm getting wrong answer 163558459 I will go crazy ;) ... The idea is to make a map for first and another for second set , and see if (the numbers duplicated in the first and the second)-> NO else it's gonna be the answer -> YES
Is this all there is in the question, or is there more?
I did exactly the same as you and we were trapped on the same stumbling block (6930th in 2nd test case). An example is that, n = 6, {1, 3}, {2, 3}, {4, 5}, {2, 5}, {4, 6}, {1, 6} leads to "NO" whereas it should actually output "YES"
My submission 163579850 satisfies this testcase...idk where it fails on the pretests....
check this Link
This round is rated for me but in normal case it should be unrated. Can anyone tell me what's wrong?
Any hints from problem $$$F$$$ ? For any $$$b\in B$$$, I can generate $$$reach(b)\subseteq A$$$ that $$$b$$$ can reach in $$$A$$$ after a number of operations. I don't see how to do the matchings greedily though (which I am assuming is the idea)
Note that a multiplication can be reversed. So it is an aequivalent problem if we divide all a[i] until all of them are odd.
Then it is greedy, match all b[i] to the biggest possible a[j], by try/devide/try/devide/... until b[i]==0. If no match is possible then ans=NO.
Thanks, AC, that's an elegant solution :).
why till odd can you elaborate more, please? like a proof or something I am unable to get intuition.
Because you can generate all the powers of 2 from '1' in the second array. So only the odd factor in the first array matters. After that for every b[i], keep dividing by 2 until you reach an element present in a. If b[i] becomes 0, then at least 1 element from a will always remain unmatched
All multiples of a number x with powers of 2 build an aequivalence set. Because we can devide these numbers to come back to the first number, the odd one.
This means, after reducing all numbers in a[] to that root value of their aequi-set, each number in b[] can be matched with only one given odd number in a[].
I am starting the solution as you mentioned, i.e. reducing all A[i] to their respective odd values. But, if I try to match each A[i] to the smallest possible B[i] my solution fails. I tried to generate a counter-test case but wasn't successful.
Can you tell me why you tried to match
B[i] -> to biggest possible A[i]
instead ofA[i] -> to smallest possible B[i]
Actually we do not match the a[i] with the smallest b[j], but instead the b[j] with each biggest possible a[i].
Consider we have in a[] after divisions some numbers: $$$( ...,3, 7, 15, ...)$$$
Now see if we can match a b[j] with the 15, we can also match it with the 7, and also with the 3. But the other way it does not work. A b[j] that can be matched with 3 does not automatically match the 7 or 15.
All the hacked solutions from this contest are in problem C using PyPy3 or python even though they have the same logic as accepted solutions from other languages. Maybe its because of slow input or slow dictionaries in python. Anyways, python should have more time to pass.
No the issue is with the hash , which leads to o(n^2)
Yes, in worse case: python dictionaries use hashing, and too bad there is no such thing as a Binary Search Tree (TreeMap in java and map in c++)
just use a tuple or str as a key
Can anyone share the test case of C, thanks in advance!
Why are so many python solutions of O(n) time complexity for Problem C getting hacked ?
because stop using python cas it may be slow?
Can someone say how to solve C without hashing, bcoz my solution using dictionaries got hacked. Or is it fate of Python Users :(
https://codeforces.me/blog/entry/101817
Nuu
Very very bad situation for python coders..... really annoying to see same logic got hacked in python (C question)... its now time to leave codeforces... thank you codeforces community....
People who used c++ and unordered map also got hacked.
https://codeforces.me/contest/1702/submission/163500607
My AC C++ code which uses unordered_map
But failed in system test
Can we increase the time limit of problem C for Python? It seems like a lot of the Python solutions are getting hacked yet most of the logic is the same as other languages.
Moment of silence for those hacked on c
have solved till E but for C i will loose around 100 rating .... its very unfair.... time limit should be increased for python... and Hacked solutions should be reevaluated for fairness or this contest should be unrated ...
Could you please tell how you did E? thnks
Solved it by first counting degrees of every node if any node degree is > 2 then return False ... Else also see that any kind of odd cycles are not allowed ...like (3 4) , (4 5) , (5 3) will not fit in 2 sets.... but even length cycle will fit in 2 sets like... (3 4), (4 5), (5 6), (6 3) **** set1 = (3,4) , (5,6) set2 = (4,5) , (3,6) **** so we have to check weather there exist any odd length cycle.... to check this we check if the graph is bipartite (if you dont know about bipartite graph...its kind of graph which devides the vertices into two sets so that and there will not be any odd length cycles...) To check for bipartite just run BFS with coloring ....you can see my code here **My solution : 163566318 ******
Thank you so much. I understood your explanation very clearly. Amazed how you thought of the same, I could never :), though I knew bipartite beforehand.
Was anyone able to solve F with bipartite matching?
I tried to use straight-up Dinic's as a last ditch effort and it didn't work out. Ah well.
Effectively yes — by colouring the graph 0/1 using BFS and then checking for any contradictions (i.e. same coloured neighbours).
...
can someone tell me how get the editorial of this or past contests
Editorial will be avaliable soon after contest
can i see the editorial of all past contests?
Yes. You can do that by opening any problem from that contest and on the bottom right you will find a link to the editorial.
I did what appears to be something different to the norm for G2. Here is my approach.
(0. If K <= 2, obviously the path is good.)
Find the LCA of adjacent pairs of nodes in the list. It is guaranteed the the LCA of all nodes will be among these values, and that it will be the value with minimum depth.
A simple path visiting all nodes must pass through the LCA (possibly as an endpoint only), and there can be at most 2 simple paths extending down from the LCA (i.e. joining at the LCA).
Now for all nodes other than the LCA (if it is even one of the nodes), partition them into two possible paths by taking the LCAs of the adjacent pairs, and if that LCA is the overall LCA they are on different paths, otherwise they're on the same path.
Sort the two candidate paths by depth.
For each pair of adjacent nodes, check the LCA — if this is a simple path ordered by depth, then the LCA must be the node with lower depth. If not, the answer is NO.
If all these conditions are satisfied, the answer is YES.
I did almost the same, but a bit simpler:
Nice! Like that — as you say a little simpler.
what graph topic was problem E?
If you treat each index as a node and create an edge between nodes with common numbers (including possible self-edges), then a partition is possible IFF you can black-white colour the graph such that no adjacent nodes are the same colour.
It doesn't make sense to penalize correct Python submissions with efficient time-complexity. I mean, one cannot use Python in Codeforces unless we write our own hashing function and map class? It's absurd. And if this continues, I expect all Python users to migrate to another platform.
In problem C last sample testcase
7 5
2 1 1 1 2 4 4
1 3
1 4
2 1
4 1
1 2
why is
1 3
answer as NO? Its clear that we can go from 1 to 3 while going from 1->2->4As we can see in the input list, 3 is not one of the stations where the train stops.
So are you suggesting that they just jump off the train without it stopping at the station? xD
The first statement of the problem clearly says at each index there is a station
Along the railroad there are stations indexed from 1 to 109
Yes but the bus doesn't stop at all stations.
I got it now. The train needs to stop.
Why did solution get hacked?(TLE)
https://codeforces.me/contest/1702/submission/163537426
Because of unordered map.
My for loop never goes beyond
2*10^5
. Isunordered_map
that slow?I never thought
unordered_map
is slower thanmap
due to hashing function...https://codeforces.me/blog/entry/62393
Just by using the normal map and you will get Accepted
I also used unordered_map in c++ but my code got ACCEPTED. Can you point out the reason? My submission https://codeforces.me/contest/1702/submission/163500607
Failed in System Testing
Already answered in icy's comment. Hashes(outputs of hash function) are bound to collide unless they are randomly distributed.
In short, It is possible to have all hashes collide deliberately if the hash function is known.
Upon collision, the unordered_map iterate
buckets
for the hash and this results inO(n^2)
at the end.This does not happens in STL map, a red-black tree, that guarantees O(logn).
Got it ! Thanks for explaining .
People who ask for increased time limit for python because of hashhack annoy me even more than falling for this hack. That's so stupid when it comes from people above gray
if you like this contest print "YES" otherwise print "NO"
Solutions to the interesting problems:
Problem F
Say we have our two multisets $$$a$$$ and $$$b$$$.
Firstly, notice that we can keep dividing elements in $$$a$$$ until they are odd and likewise keep dividing elements in $$$b$$$ until they are odd. This doesn't change our answer. Now we can simplify the problem and only consider the operation in which you divide elements in $$$b$$$ by two (there is no point in multiplying them by two anymore...).
Problem G
Find the "diameter" of the path. Basically, for any path we have these two "leftmost" and "rightmost" vertices which sort of define the path and then a bunch of points between those vertices. We can find the diameter of the path by first finding the deepest node and then finding the node that is farthest from the deepest node (similar to how you find diameter of a tree...). Call these points $$$x, y$$$. Then, the rest of the problem reduces to figuring out if the other points lie between $$$x$$$ and $$$y$$$, which is a standard problem.
Nice Explanation.
Can you share link of the standard problem which is similar to G?
A point $$$u$$$ lies between points $$$x$$$ and $$$y$$$ in a tree iff:
$$$lca(x, y)$$$ is an ancestor of $$$u$$$, where lca stands for least common ancestor.
$$$u$$$ is an ancestor of either $$$x$$$ or $$$y$$$.
To find $$$lca$$$, see: https://cses.fi/problemset/task/1688
My submisson: 163602507 Problem E. Does anyone know of a case that went wrong?
Your code can give different answers depending on the order of dominos given.
It's now 5h before the final standings and why it says the round is unrated for me?
It's said that one must attend at least 5 contests and submit at least 1 problem in each contest before he or she is able to attend rated div.3
In E,
The observation that I got to was that each number can be paired with at most two othet numbers. Also , to appropriatly divide them in two sets, there shou should not be any cycle of odd length, but I got WA again and again. Where did i go wrong?
Edit : Submission https://codeforces.me/contest/1702/submission/163572445
Everything is OK, except one mistake in implementation. In string 16, what is "len(a) > 2 or len(b) > 2"? a and b are not initialized here. Instead of this, you should write "len(i) > 2" and you will get OK.
I had it in above line but I didn't know how did it came here.
Thanks man,
You killed my Imposter Syndrome today
Would the datas which were used to hack others' codes successfully be tested for everybody after the HACK is closed? I was trying to hack someone's code but I submitted a wrong data, but I'm sure his code will lead to Time Limit Exceeded. lol, then I hope others' hacking datas would hack this bro's code.
I am always dreaming of AK the div3
Me too. But things became different when I was stuck on Problem E. And I sill don't know how my programmed go wrong. My submission: https://codeforces.me/contest/1702/submission/163579127
Problem E killed my 1-hour time with getting no gains.
Contest Must Be Unrated ... as many python coders unnecessary got hacked... it will be unfair to them...
Can you explain how did it happen?
https://codeforces.me/blog/entry/101817?#comment-903567 read this
That's an interesting usage of "unnecessary". I think you define an "unnecessary" hack as one that you do not want to see.
However, in real life the defintion is more simple: If your solution can be hacked, then it will be hacked. So it is your responsibility to provide an unhackable solution.
I think that might be sometimes more hard in Python than C++, but nevertheless, you are free to choose. And in this case, why you do not have a template implementing a not-hashcode based structure usable as a map? Or use one with a custom hash code?
The tasks were very interesting
Hey there, why does the order of the dominoes matter in problem E? Also is it even possible to solve this question and other these type of questions without graph?
My approach for problem E (Without using Graphs/tree/dfs/dsu)
Travel in all pairs and check for ith pair
If you can't put the ith pair in set 1 and set 2 both then : NO
If both numbers in pair is same then:NO
Else If we can't put ith pair in set 1 then put in set2
Else If we can't put ith pair in set 2 then put in set1
THE MOST IMPORTANT : If we can put ith pair in set1 and set 2 both then Leave that pair for now.
If all the remaining pairs can be placed in set 1 or set 2, put 1 pair of those remaining pairs in set 1 or set 2 and repeat this process again and again until all pairs are placed in set 1 or set 2
I had a question about the sentence” If we can put ith pair in set1 and set 2 both then Leave that pair for now.” Why I can’t choose any set and add the ith pair in. Can you make a case for why this way isn’t correct? Thanks
such as (1,2)(6,4)(3,4)(6,5)(1,5)(2,3)
if you choose (1,2)(6,4) into first set, then WA
Thank you very much!!
i have done the same before, but i got WA on test 3 . think about that {(1,2),(3,4),(2,3)} (i know ai,bi<=n .but for understanding take this example)
if you put first pair in set 1 , second pair in set 2 then you will get NO because you will not be able to put 3rd in any set. but correct answer is yes.
so we try to put all pairs that can't put in one set in second set. after doing that we will put 1 pair from remaining in any set.
sad to say, seems to get tle on some cases. suppose input is (1,2) (3,4) ... (n-1,n) (1,2)(3,4) ... (n-1,n) every pair can fit in both sets, and if you choose (1,2) into the first set, the only step your method can do is add another (1,2) into the second set, and have to loop again and again.
constraints: ai,bi<=n i think that we will never get such cases
i don't think the case break the constraint let n = 100
first 50 pair are (1,2) (3,4) ... (99,100) last 50 pair are (1,2) (3,4) ... (99,100)
isn't it
you are right , for your test case time complexity is O(n*n), that leads to tle for sure.
Why can't my code?
Why is this question E used Kruskal? Can you look at my code?thanks. linK:https://codeforc.es/contest/1702/submission/163631990
I'm not sure that Kruskal is needed, I think any valid set of nodes either needs to be a path or an even cycle.
why does this code show wa on some cases?? what is wrong with this idea ?? Question E dominoes
whole solution link 163531383
Read
Why use unordered_map in problem C will TLE but map will not ?
https://codeforces.me/contest/1702/submission/163500607
My AC code which uses unordered_map Failed in System Testing
System test fails it
Yesss!!
What is the algorithm used in E as i tried to solved it using greedy approach but getting wrong answer on test 2 my solution-> https://codeforces.me/contest/1702/submission/163556344
Read your problem will be solved.
Hi everyone, I want to ask about pE the input after n contains 2*n lines, and each line has two numbers. Is that means in legal cases all the numbers from 1~n only appear two times? Thanks!
Why aren't they starting system testing?
My rating hasn't changed yet, is there a problem with my account or it is just a general case?
It's normal. Ratings will be updated today but may be not in the morning.
General case, also hacks are opened for more than 12 hours as of now. This is not what they claimed in the announcement.
Hacks after the 12 hour mark don't affect system tests. Successful hacks after the designated time are there to strengthen tests for practice.
I think having test cases which gives TLE on using unordered map should be avoided (happened in C for this contest). The question should get accepted based on the concept used and not on the data structure.
Lol... competitive programming is meant to increase understanding of data structures. You should learn from this incident the difference between ordered map and unordered map.
I think getting the right logic is more important. If it is meant for understanding the data structures, I would rather practice on leetcode or gfg than codeforces. Everybody knows the difference between the two data structures, we can even use unordered map with a custom hash function but the question is of the greedy concept and not the unordered map / ordered map
As a competitive programmer, you're expected to think about the worst case complexity while writing logic. And the testers seem to have the same opinion too. There are questions where you get TLE because you used cin cout without the fast I/O modifications, or because you forgot to pass vector as a reference to a function. You're expected to know this in cp. You might find the information on GFG and LC but you actually get to see its impact when you're solving such questions.
Yeah I agree with you on the point of analysing the worst case complexity, but I was saying something different here. The question is not dedicated to using unordered map / or any other data structure. The question can be done using other data structures as well without getting a TLE. The question is based on how programmer applies the greedy approach to get the right answer. Its like when you do everything right in a maths question and applying the right concept to solve it but did some calculation error at the end to get an incorrect final answer. Btw it is not happening with me for the first time xD. It was just like while trying to do the question as quickly as possible, I didn't noticed that I was using an unordered map with integer key which has a pretty high probability of giving a collision. Anyways, whatever done cant be undone, was just sharing my views
Well you cracked the logic right? The only thing that you lost is rating. As long as that's not a concern, this shouldn't bother you. If it is a concern, you'll remember it the next time you see a similar question. Win-win for you, cheers!
I noticed that many people are trying hard to get a rating. But sometimes, you just need to enjoy the round. I passed the first 4 tasks, read 5 and 6, and realized: I can pass them, but why take them? I have freed up time, and I can spend this time on really worthwhile tasks: G1 and G2. They seemed interesting on first reading. And so I even passed one of them. In general, the round is very cool, especially G1 and G2.
is 805 insecure?! Why so many hacks lol.
i also got hacked:(( Just small issue of not taking equal :((
Can anybody explain why my submission 163494875 of Problem 1702C - Train and Queries failed on SysTest? I got robbed of a 3 digit rank sadly. I have always used maps and sets which have a complexity of logarithmic order. I can't understand the reason.
Thanks in advance :')
++
I got TLE on test 44 in the final tests and I don't know why, this is my solution.
Use ordered mp instead of unordered map
You don't have to store all positions of the occurrences of a number, the first pos and last pos would be enough. Consider the following case:
1 4 6 1 3 1 1 8 9 3
Queries:
1 3
3 1
Here you just wanna know when the 1 first appeared (index 0) and when the 3 last appeared (index 9). You do not care about any other pos. Since index of b > index of a .:. ans = Yes
Consider the second query, here 3 appeared first at index 4 and 1 appeared last at index 6, therefore this is also a yes.
Think of making a map that has the number as its key, and pair of integers as its value (first_pos, last_pos). and just see if last_pos(b) > first_pos(a), if so print YES otherwise print NO.
Hope that helped :)
I know this solution. I was asking about the problem in my code. Thanks anyway, I got it.
how to solve problem E with DSU? like tourist
Bipartite matching
Damn one of my solutions was hacked. First time I managed to solve 4 problems
Sad :( At least you've learned not to use map instead of unordered_map next time.
why would map be better in this situation?
As I have understood, the hashing function of unordered_map is not as good as the one in map. It causes collision when big random numbers are stored in it, so to avoid this collision, the time complexity goes from O(1) -> O(n) which is way too bad, as it cause tle.
you're a bit wrong std::map has no hash function at all — it's based on the red-black trees, which gives you a guaranteed(!) O(log(n)) complexity, but unordered_map is based on hashing, and, as a lot of people know, what is the hash function inside of it, unordered_map can be easily hacked. Of, course, you can determine your own hash function to avoid hacks (read this https://codeforces.me/blog/entry/62393), but it still can be blown up somehow
Thanks for the correction
you're welcome
I tried to solve E using some intuition.
Firstly if there is a number which frequency is greater than 2 then the answer is NO. Secondly if a domino contains two equal number then the answer is NO. Thirdly if there is a number X, then surely there are exactly two dominos where the number X is written.
Our goal is to divide such two dominos where X is common. Now we assume that we can divide these two dominos then there will be X common number and another two or one number. Ex: (1 2) (1 3) (2 4) (3 4) if we put (1 2) in one and (1 3) in other then X = 1 and other two numbers are 2 & 3. or (1 2) (1 2) if we put (1 2) in one and (1 2) in other then X = 1 and other one number is 2.
Now if the division is correct then rest of numbers must not written on same domino. If so then the answer is NO. ex: (1 2) (1 3) (2 3) (4 5) (5 6) (5 6) here if we put (1 2) in a set and (1 3) in other set then (2 3) must be written on two separate dominos, but (2 3) is written on same domino so we can not divide them.
But the solution is now working and I could not find any counter case so far.
My solution getting WA in TC:4 : Solution
try this 6 (1 3) (2 3) (4 5) (2 5) (4, 6) (1 6) (the answer is YES)
getting YES
hm.. seems like there is no testcase which kills your solution with n <= 10 — i tried to stress test and found nothing i will increase n to 20 and try again
i've found it! n =28
19 5 7 20 17 1 13 23 13 20 26 11 10 26 12 27 27 17 1 25 16 19 23 22 8 16 3 15 8 7 21 18 15 28 14 25 12 18 4 2 3 24 21 28 2 4 10 24 9 6 22 5 9 6 14 11
or, if it will be better for you, i can attach this: your solution yields yes, but the correct one yields no
Thank you very much, though I haven't solved it yet
you're welcome
When will the editorial be uploaded?
Where should I complain about my problem (C) in a contest(Div 3 #805) being mistakenly marked as time limit exceeded in the system testing period. Other peoples having code of the exact same(or even more) time complexity has been passed. :'(
Never ever use an unordered map. Sure, its average time complexity is O(1) but the worst time complexity is O(n). Because of that creators (or hackers) make special tests trying to reach the worst time complexity, and your solution fails. Always use a map.
Noted :) Thank you , I will remember this!
How long does it take to increase the rating???
How long does it take to increase the rating?
F is an original question! Link: https://atcoder.jp/contests/abc254/tasks/abc254_h
In a general div 1 or div 2 contest the change is rating occur just after because of no hacking round in them. While in div 3 contest there is a 12 hour hacking round and after that there is a 3-4 hour system testing, and within a day the rating got update but why is it taking soo much time in this contest? Can somebody please mention the reasons behind this.
If somebody solved E using DSU, pls share your code.
See tourist's code
Argh..... Not got the rating yet,how much more would you like to delay
How can we get to know that the contest has become unrated? Is there any announcement or they just don't update the rating ?
I m expecting to become specialist in this contest but as the ratings haven't been updated yet and so i eligible for next competition that is div4 will i be able to participate in it or not after the rating changes have been reflected?
p.s. some1 said something about this contest not being rated!!! that will be really cruel!!!ratings just show up w8 is agonizing
Round has become unrated for everyone, you can check under the contests section, apply the filter as only unrated then you will see it there, I guess they made it unrated because F and G both were exactly found on atcoder and codechef , so a lot of people might have copied it, and also these are the last problems so solving them really matters a lot to the ratings. Also soon the editorial might get posted, saying the same about the contest
that is shown for every contest after system testing till ratings are updated
Oh ok, I didn't know that, it is taking so long so I thought it might have become unrated. My bad :(
Why make such a big assumption without knowing what you are talking about? :)
Yes, sorry for that, my bad :(( We can't delete comments on cf, another lesson learned.
issoke
Why isn't it rated for me though i have 953 rating?
is it unrated for me only 465 rating haha
lol. No, obviously.
yeah... why rating had not updated yet ?
It hasn't updated for anyone.
ig there is some server error ? in condeforces
possibly
When will be rating changed? I have to register in Div. 4
Can anyone how to solve E using disjoint set union?
Why is greedy solution not working for E?
Because order of taking dominoes actually matters. https://codeforces.me/blog/entry/104668?#comment-930165
Can someone please help me understand this solution to problem E? I know that checking for bipartiteness does the trick, but this solution seems new and interesting (no offense intended)
The thing that I understood (not concretely) are (and please correct me if I'm wrong):
I don't understand why:
I am unable to concretely understand the idea behind it. Can someone please help me out here?
Forget the +n, it is confusing, and doesn't add anything to the reasoning. Just pretend there exist two nodes, k and k'.
Note first that there are no nodes with degree > 2.
For any edge u,v, we connect u -> v' and v -> u'.
Suppose there existed a cycle say 1 -> 2 -> 3 ->...n -> 1.
For any edge i,j there exists i -> j' and j -> i'.
Therefore, the following paths exist
1 -> 2' -> 3 -> 4' ... odd -> even'
1' -> 2 -> 3 -> 4' .. odd' -> even
Note that every even element in the first cycle is even'. Therefore, if the cycle is odd, 1 and 1' exist in the same path, otherwise they don't.
About me using an LCA standard board to change, I hope to re-examine, I have no need to write G2, G1 first, and I submitted the same code for both questions, G1 did not check G2 but checked again, which is incredible I only 2000 people, in order to write this problem spent a lot of time, in order to score can be written from front to back, I looked at the code and found that the so-called check is the same, in addition to the board is almost the rest of the basic difference This is unacceptable LCA board should be the same on the whole network Ah Administrators are expected to re-examine
Can anyone of you please give a case for these submission?(problem E) https://codeforces.me/contest/1702/submission/163518238 And anyone please tell me what is that case( 2nd test ,6930th token )of problem E. Lot of people got WA in that case.
why this code is giving WA for question 1702 E. Split Into Two Sets :-
include <bits/stdc++.h>
using namespace std;
bool allVisited(vector &visited) { for(auto it:visited) { if(it==0) return false; } return true; }
void solve1(int n,vector<pair<int,int>> &v, vector &taken, vector &visited) { for(int i=0;i<n;i++) { if(!taken[i]) { if(!visited[v[i].first] && !visited[v[i].second]) { visited[v[i].first]=1; visited[v[i].second]=1;
}
int main() { int t; cin>>t;
}
kindly help me detect the edge case or anything else i am missing out in this code...