| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | jiangly | 3631 |
| 4 | Kevin114514 | 3574 |
| 5 | maroonrk | 3521 |
| 6 | strapple | 3515 |
| 7 | Radewoosh | 3461 |
| 8 | tourist | 3428 |
| 9 | turmax | 3378 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 140 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
|
+15
Azerbaijan team:
Team selection was based on the combined scores of two selection rounds and a bonus score derived from the Grand Prix results): https://aze-selections2025.codeany.org |
|
0
I appreciate your reply — thank you! |
|
-13
Qingyu, Will the test cases for the tasks be published? Making the Ucups archives open and publicly available would greatly benefit the community by allowing participants to learn from past tasks, improve their problem-solving skills, and refine their strategies. It would also enhance transparency and fairness, making the competition experience even better for everyone. |
|
+10
I don’t believe that’s the case. There were multiple meetings at ADA University and other locations, followed by extensive negotiations. Reference: https://x.com/fismailzade/status/1884879439240007757 |
|
+37
Fantastic news! A warm welcome to Azerbaijan, dear finalists! We’re thrilled to have you here and wish you an unforgettable experience! |
|
+1
Fikrat_Asadzadeh, Hasanv, rahidilbayramli, coolboy19521 will win Info(1)Cup! Let's go guys! You are the best! |
|
0
dario2994 Where is possible to download test cases ? |
|
On
MikeMirzayanov →
2022-2023 ICPC, NERC, Northern Eurasia Onsite (Unrated, Online Mirror, ICPC Rules, Teams Preferred), 3 years ago
0
MikeMirzayanov, when submissions of other participants of this round will be opened? |
|
0
How to solve Čokolade, and Neboderi ? |
|
0
Can you give, constructive feedback, on why you don't like the eolymp ? |
|
+4
You can find them here https://ejoi2022.org/past-contests/ |
|
0
If you observe you can see that the minimum answer for each node, is the level of dfs tree. For example, the root is level 1, its neighbourhoods have level 2 (level of parent + 1) and etc... The maximum answer for each node( let's say the node v), is if you visited all nodes in other subtrees and in the last way coming to the node v. We can calculate it by following the formula: Let's say that the subtree with root v has dp[v] children. So the maximum answer will be dp[1] — dp[v] + 1. It means that you have already visited all nodes except the children of the node v. dp[v] can be calculated by just easy dfs. It is classical. The code of dfs for all needed calculations. |
|
0
Thank you for the great explanation mango_lassi! |
|
0
Thank you for the solution to problem B! cristian1997 |
|
0
How to solve Problems: (L) Fenwick Tree, (J) Elden Ring, (B) Beautiful string? Also, it is interesting for me, is there any alternative solution for problem (S) Two Sequences (I solved it with the help of KMP, it is classical and can be observed quickly, but maybe there is something alternative)? |
|
0
Thank you for the interesting contest! How to solve L and N as well from Div 2 ? Actually, L is an easy problem, but it wasn't clear about the ace card in the statement. And also, it isn't clear in N, can we have double points for C and D? |
|
0
I got it. I haven't seen that observation. Thank you again Petr ! |
|
0
Wow, thank you for such an amazing explanation with observations Petr ! |
|
0
Hyeong ko_osaga, can you share the test cases? |
|
+6
Thanks for the exciting contest! How to solve M and F? |
|
998batrr, will be test cases and jury solutions added? |
|
On
Mamedov →
International Lotfi Zadeh Olympiad (ILO) 2021 for the 1st time — Online Mirror, 4 years ago
-10
No worries about security. Just use the password that you don't use anywhere. |
|
0
Are testcases available ? |
|
0
Thank you! 감사합니다 |
|
+8
Hyeong ko_osaga, can you share the test cases? |
|
+8
arthurconmy here . Next round is on 7 November. |
|
+18
Wow, great solution. Thank you Qingyu ! |
|
+44
How to solve Beautiful Numbers from Div2, Or Machine, Periodic Ruler ? Or Machine looks like a grap. In Beautiful Numbers I tried greedy in multiset by finding the closest groups such 91, 82,73 and etc.. ,but it doesn't work. |
|
0
Better to ask here site-register@opencup.org. Cordinator of your region must register you. |
|
-18
I would be thankful, if someone, maybe from Div1 will help me to understand the solution. |
|
-26
And what does this function fc(y) mean? As far I understand it doesn't count loose. Qingyu |
|
-26
Know, everything is clear for me about convex hull trick. But how that function is corresponded to this trick ? Where is k,b,x ? Qingyu Endagorion |
|
+5
nocriz what about making group open-source repository for saving this list ? Everyone will be able to pull and update this list. I am actively participating these days, I can keep track of it. |
|
+21
What about of updating this list ? |
|
0
You are welcome ! |
|
0
Div2 O: Let's just simply check all permutations of digits (0, 1, 2, 3, 4 , 5, 6, 7, 8 , 9) and find the permutation, when it is possible to obtain the maximum value. Code Div2 P: Obviously we want to delete as much as possible. For this case let's observe what will be if we achieved to the panel '<' and our direction at that time is going right, so it will turn our direction to the left. If we will not have '>' we will exit from game and we will not be able to delete as much as possible. So obviously our answer will be the panels which have pairs(means that each '>' has his '<' from the right, one '>' can have 2 '<' and vice versa) and some part if there is, from where our player will run out. By some observation it will be seen that mostly center will have pairs and some parts from right or left may have panels which don't have pairs. So we will choose the maximum part (the left or right), actually we will choose the maximum count from where we will exit if such parts exists. Code |
|
+8
There is another greedy approach for Q. Solution Process in order from the shortest length. When processing, you should check how much you can delete the files before it and the files after it. It is a greedy algorithm. Intuitively it is obvious that we will delete the much as possible and also we will not delete the needed files as we delete from the shortest file and when we checking we will stop when we achieved the needed which is equal more than the length we want delete. Code: here |
|
-41
Is there any other approach for E exempt the editorial's version ? Maybe, it is possible to find the answer with other strategy. |
|
-40
Is there any other approach for A exempt the editorial's version ? Maybe,it is possible to construct the answer in other way. |
|
0
Thank you Qingyu! Nice observation ! We misled some points in our approach. |
|
+8
I tried to implement various greedy algorithms, but they don't work. |
|
+8
How to solve problem Q(Delete Files) from Div2 ? Is it greedy or DP ? |
|
0
|
|
0
Maybe someone from Div.1 will be able to explain this problem ? |
|
+18
Thank you AmDer ! |
|
+18
AmDer Can you send your solution ? |
|
+9
In problem G, it is not clear how to build the convex hull as for the set of points from example, it will be the monotonous ascending function. Is there any other explanations for problem G ? Endagorion Qingyu |
|
+18
for N, it is possible to use BFS also. |
|
+8
Thank you ATSTNG ! Obviously, linked list is better than set. |
|
+26
Thank you Qingyu ! Very interesting observation. |
|
+11
Thank you bicsi ! |
|
+39
How to solve problems G from Div1 and M from Div2 ? Our team thought may be random will work for M. |
|
+19
How to solve problem D? MO algorithms gives TLE. I have an idea with Merge Sort Tree(as segment tree,but we store elements) . Will it pass ? |
|
+3
Sure, EOlymp is very popular in Azerbaijan. One of the EOlymp admins is the professor of the ADA University, famous coach in Ukraine Mykhailo Medvediev. He made EOlymp popular in our country. At the moment all students of ADA university have their assigments there, also schoolers prepare for their competitions on EOlymp. |
|
0
Hopefully, it will be uploaded on EOlymp. I will write here, when it will be ready. |
|
+48
Azerbaijan team:
|
|
+3
How to solve I ? |
|
-21
Were there errors in tests with problem S ? I have seen people passed it only after making +60 , +30 submissions. |
|
0
Thank you Benq Benjamin for the solution .I got it . We wrote dp on prefixes . it was our mistake . |
|
-32
|
|
-20
|
|
-8
How to solve problem A (Arrange And Count) from div1 ? We thought about DP ,but we didn't manage to solve it. |
|
0
Were there wrong ideas that passed ? |
|
+22
Thank you paula ! I liked the contest . |
|
+7
Thank you Arkham_Knight ! |
|
+12
Will be there editorial ? How to solve Bajka and Papričice ? I got partial points only (20,50). |
|
+3
Good luck on IOI Domen idk321 ! Don't worry and have pleasure, when you will be solving problems . It is important too . |
|
+19
When i was on IOI , guys told me to solve more old IOI problems, because there are can be something new techniques or new ideas . Also to take Bronze medal you must solve one easy problem full and to solve a lot subtasks as lot as you can. |
|
+8
Thank you ! |
|
0
no , you can copy from 14th line till 87th . |
|
0
It will be very good if the tasks difficulty will be some more from our rating . It will be not very hard for us . Also thanks for the platform bicsi ! |
|
0
then , i advise you to download test cases and then upload it on hackerrank . In hackerrank , you will able to solve it . |
|
+5
you can find them on codeforces here |
|
+10
Colin thank you for your useful tutorial ! You can add this problems https://mirror.codeforces.com/blog/entry/52492 . |
|
+4
everything is ok now . My internet failed me. |
|
+4
I can't join. I guess, the link's time expired . |
|
0
Hi Jan! I like very much your explanations! It will be very interesting to listen your explanation for problem Info(1)Cup 2017 Xorsum or similar to Codeforces Round #626 Div2D and Info(1)Cup 2019 Cat . |
|
+11
|
|
+4
Thanks mnaeraxr! I understasnd . |
|
+4
How to solve Problem Q(Easy Puzzle) ? And the problem J(Program Optimization) can solved with Cartesian tree ? Because my solution for J with segment tree gived TLE ,because we have a constant when two position updates and it will be 2*log2(n) . |
|
0
tumaryui thanks man ! |
|
0
How to solve Problem O(Official Visit) ? How we can construct path ,so it will be maximum? |
|
0
Hi ! I want to help and test problems ,but i have one question . What time will the testing deadline be? |
|
+18
will be there editorial ? |
|
0
Thanks for sharing your experience ! |
|
0
There are a lot of method . I will tell about my solution. If there are n verticles so we have n*(n-1)/2 pairs that theoretically can have a short distance 2 ,but graph must be connected . So i constructed a graph where all edges are 1 j (2<=j<=n) . This graph will have (n*(n-1)/2)-(n-1) pairs and their distance are 2 . It is maximal number of pairs can be. So if k>(n*(n-1)/2)-(n-1) answer is -1 . if k<(n*(n-1)/2)-(n-1) we must create ((n*(n-1)/2)-(n-1))-k triangles (cycles) . |
|
+2
How to solve last problem ? I have some ideas ,but i had a little time to think on them. |
|
+9
|
|
+1
no problem , glad to help you |
|
+4
|
|
+47
Azerbaijan First Team:
Azerbaijan Second Team:
|
|
0
thanks forgotter, i will try to understand it. Do you see my insert function ? I think all problems in this function. I think ,i implemented it very bad. |
|
-6
I don't know ,how i can do this. Can you show ? |
|
On
kien_coi_1997 →
An amazing way to calculate 10^18-th fibonacci number using 25 lines of code., 7 years ago
0
oversolver can you explain , how is it work ? |
|
0
TooNewbie , why is better to go first to the farthest one , then to the nearest ? When i wrote first to the nearest one ,then to the farthest , it gives TLE . Maybe ,the best do it random ? |
|
0
thanks Emilbek ! |
|
0
Will be there editorial and will be possible to finish the problems ? |
|
0
oh ,really . very interesting to know that. Thanks very much ! :) |
|
0
thanks very much ! :) |
|
+41
me too |
| Name |
|---|


