Hello Codeforces,
ICPC Amritapuri Regional will be hosting next team practice round on CodeDrills on Tuesday, 25th May 2021. There will be 5 problems to be solved in 2.5 hours.
Contest Details
- Contest Link — Amritapuri Practice Session #7
- Date & Time — 25 May 2021, Tuesday, 18:30 IST
- Duration — 2.5 Hours
- Will follow standard ICPC scoring system (20 minutes penalty and 1 point per problem)
- It is a team contest and it would be unrated.
Registration
- You will need to create a team on the contest page in order to participate.
- Team size can be upto 3.
- While creating the team, add the registered emails of other users to invite them to join your team. They will get an invite email, ask them to accept.
- For more details on team registration, refer this guide.
Note : Register your teams & accept invites before the start of the contest. This won't be allowed after contest starts!
Prizes
- Cash prizes of INR 35000 for top 15 teams.
- 1st Place — INR 5000
- 2nd, 3rd Places — INR 4000 each
- 4th, 5th, 6th Places — INR 3000 each
- 7th, 8th, 9th, 10th Places — INR 2000 each
- 11th, 12th, 13th, 14th, 15th Places — INR 1000 each
- Only Indian participants are eligible for prizes but everyone can participate.
- Prize money is per team.
Joining me on the problem setting panel are:
- Setters: Aryan aryanc403 Choudhary, Chaithanya Dragonado Shyam, Aswin aswinashok44 Ashok, Bipin bipinb1994 B and Vichitr Vichitr Gandas
- Testers: Aswin aswinashok44 Ashok, Mayank katana_handler Pugalia, Chaithanya Dragonado Shyam, Balajiganpathi Balajiganapathi S and Vichitr Vichitr Gandas
- Admin: Vichitr Vichitr Gandas
I would like to thank all of them for the round preparation. Along with them I would also like to thank
- Balajiganpathi Balajiganapathi S, and Ashish Ashishgup Gupta for suggestions and improvements.
- Deepa deepa_panwar Panwar for developing amazing CodeDrills platform.
- Mike MikeMirzayanov Mirzayanov for amazing Polygon platform.
I hope you will enjoy solving the problems. Any feedback is appreciated after the contest.
Good Luck & Have Fun!
Hope to see you participating!!
UPDATES:
- Contest is over. Thanks for great participation. Problems are public and available for practice now.
- Submissions are also public. You can view others submissions from leaderboard.
- Editorials are published for all problems except Alibaba and Thieves. View them on Editorial tab on the problem page.
- If there are any doubts on the problems or solutions, ask them on this blog or on CodeDrills Discuss.
- Editorial for Alibaba and Thieves is also published now.
Reminder: please register/send/accept invites before contest starts as it won't be allowed after it starts.
Contest starts in 5:30 hours.
Hey Vichitr I have registered on behalf my Team but one my Teammates has not received any invite mail yet , although there is showing invited Besides his id. This happens Every time to him . Any way to get out of this ?
It seems there was an extra space in the teammate's email so the invite mail to your teammate kept bouncing. We have fixed the issue. Meanwhile, your teammate can also accept by directly visiting the team url.
The issue has been resolved.
I am not being able to register... The spinner keeps spinning.
Edit: The site does not mention what characters are permitted while creating a team name. I had to look into the dev tools to see that it doesn't include special characters.
I would like to request this feature to at least tell the users what are they doing wrong by prompt...
Please try now. The site was down for some time.
your website can't handle queue in first problem itself :(
At least you must provide a support during the contest where we can ask our queries related to the problems.
You can ask on CF or telegram channel. Its mentioned in contest info page. You can also ask on discuss page. We do look and answer on all places.
You can always ask queries on CodeDrills discuss or message moderators on https://discuss.codedrills.io/g/moderators
How to solve Alibaba and Thieves ? Also in horse and barns what is probability that a particular cell will be selected while randomly choosing k cells ? Will it be k/(n*m) ?
For horse and barns problem: for your doubt, the number of ways of choosing k cells such that a particular cell is chosen is $$$\binom{N*M - 1}{K -1}$$$(check here to know about combinations) because we have the choice of choosing $$$K-1$$$ cells from $$$N*M-1$$$ cells. But it is not of much relevance here because we don't know if the particular cell we have chosen is the one with maximum distance.
To make sure that the particular cell we have chosen is the maximum distance we restrict our choices only to those cells whose distance is are less than or equal to the one we chose and choose $$$K-1$$$ among those. That is what I have done in the editorial. There are other ways of counting the same thing.
Why does the following idea fail?? Anyone who used this method and got it accepted?
I used the idea to find the contribution of all cells of particular distance from barn. Let call the total number of cells with
distance <= d
astotalupto[d]
, then finding contribution of distance d is $$$totalupto[d] \choose k$$$-$$$totalupto[d-1] \choose k$$$.Therefore total answer is : $$${\sum_{d}contribution[d]*d}/{n*m \choose k}$$$
Code for reference
Update : Idea is correct, code is buggy.
Hey this is also one of our tester's solution idea. We got AC on this idea. That same solution is there in Setter's Code 2 as well.
Here $$$df[i] =$$$ number of cells with distance $$$= i$$$.
NEvermind, found the bug. In fact I made a blunder in my BFS loop itself. T_T
Alibaba and Thieves: The idea is to iterate over the sorted list of time intervals in the increasing order of <end time,start time> and assign the earliest available time slot to steal the coin from the current range, if the earliest available slot is outside the current time range skip stealing from that box.
You can check setter's code and tester's code for implementation.
Resolved
I don't know if this is the code you submitted, so many errors I see. There can be small mistakes here and there. Can you paste your complete code?
It was problem with
m = 0
.It would be better if the full constraints of the problem are mentioned ':D.
Isn't it mentioned $$$m <= n$$$. That means $$$m$$$ can be $$$0$$$ as well.
if m=0 answer should be NO you are printing MAYBE ig.
Yeah, I got it later, thanks.
A small request to bring in edit team feature, had to delete everytime for editing small details.
How to solve B? There is no editorial for it @ Vichitr
You can sort the boxes array with increasing order of ending time and then greedily pick the boxes going from 1 to n by keeping track of the previous ending time and just adding the box if the previous ending time is strictly less than current starting time.
Alibaba and Thieves. This problem does not have any explanation in the editorial.
Editorial is published now.
Can anyone please help me in Alibaba and Thieves. I was running the same algo mentioned in the editorial previously but with sorted according to <start time,end time> and was constantly getting WA. But after looking at the editorial sorting on the basis of <end time,start time> resolved the issue. Can anyone explain or give a counter example where sorting on the basis of <start time,end time> fails? I am not able to find the loop hole. Thanks
I think it will fail on this:
You should first take the 1st coin, then the 3rd and then the 2nd, but by sorting <start time,end time> this way you will take only 1st and 2nd.
yes, Thanks got it.
Any updates about the online preliminary round?
Vichitr deepa_panwar Seems like the site is down right now ? when can we expect it to be up for upsolving ?
Hey, scaling down the server. It should take around 5 minutes.
Edit: Its up now.
Site is up now.
In contest numbering of problems in scoreboard is not matching numbering on dashboard. Like problem number 2 of scoreboard Subarray MEX Sum corresponds to problem 5 in dashboard.
This created a lot of confusion as problem names were also not mentioned in the scoreboard.
Yes we are planning to fix it by assigning alphabets. Sorry for the confusion.
Thanks
TLDR; Why CodeDrills instead of CodeChef?
Indian ICPC Online regionals used to be organised with the help of CodeChef.com for quite a few years. But this time it has been decided to be held on a new platform CodeDrills.io launched just about an year back, to be specific on 25th March, 2020. But CodeDrills is not in any way better than CodeChef, then why such a change?
Codedrills lacks a number of basic features that can be used at majority of competitive programming websites. Talking about its UI/UX, its neither towards a minimalistic side as CodeForces nor towards a finished side as CodeChef, lies in a middle ground making it difficult to use and understand, it literally took 5 minutes for our team to see our rank during the contest :(. Using such a newly build platform for a prestigious contest seems a weird choice on the part of organisers. Their could be some unfortunate & unpredictable situations during the contest, is CodeDrills prepared for such bumps? Isn't CodeChef a better choice, which could have been tested for many of such unpleasant surprises. Why such abrupt changes? Possible answers:
Regarding your "Possible answers" which are basically just conspiracy theories :)
I want to suggest few things.
Add some greenery to the Accepted verdict.Almost all OJs have it, and its beautiful and satisfying.
Why need Javascript to load everything, the website gets very slow during heavy browser load or on weak PCs. The UI has a modern look to it indeed, but it would be cooler if its lightweight as well.
Please dont use google as an authentication. Its buggy as hell.
Introduce ratings. CP is fun only when there is rating and rank and colours.
Thanks for the feedback. We will work on incorporating them:
Some more feedback regarding submissions for problems:
1.After submitting a solution to problem show the process running on a different page like codeforces, codechef , atcoder ,spoj or any other major cp platforms.
2.Add a submit button after clicking it we will go in a new page where we can submit the problem by copy paste or selecting file. Right now it's on main page of the task which make the page bar long -> not comfortable for reading the problem.
3.Verdict will be given with some color with some single word like "AC", "Accepted" rather than "congratulations, you have solved the task".
@Balajiganapathi
Regarding your third point, there was a queue issue and judging was slow yesterday in the beginning with just 472 teams participating. How do we know if codedrills can handle the load in the online round when the number of teams will be 10x?
Also, search is broken and there's no college/university filter. I had mentioned this six weeks ago too. I hope you realize how important it is to be able to search for teams on the basis of college in a contest where your college rank matters too, not just your overall place in the standings. And is there a way to check our rank during the contest apart from manually checking pages of the scoreboard?
Hey we had built the search feature but seems we forgot to deploy it before the contest. We have deployed now. You can search by team name or college name on the scoreboard.
Re. the queue issue, yes there was some queueing of submissions at the beginning of the contest. We will fix that issue. We are also running load tests to ensure the judge is able to handle the loads that is expected during quals round.
Thanks for adding search! Out of curiosity, how are you running the load tests?
We use k6 for loadtests. We found that the simplest to setup and run.
Some of the letters on your website are unusually big.
Can you let me know which ones are you talking about? Will take a look.
[Hello, my name], status, problems ...
I didn't saw such huge letters on websites. Maybe I am the only one who doesn't like it.
Hey brother/sister,
I think deepa_panwar has answered most of your questions and weird/false assumptions also. I dont have to say anything further there. Just adding few points here:
As you can see Deepa has said how open CodeDrills is to constructive criticism and i have first hand seen how seriously those feedbacks are taken. Ex: Even before you said about the numbering of the problem, we already discussed about it yesterday and have decided the fix for it.
You are plainly comparing CodeDrills with CF and CC which is fine but you have directly ignored the fact that both the sites have been there for more than a decade.
This is a personal opinion here. If you really think that the things that you have mentioned are a problem that needs to addressed. It would be much more convincing if it came from a real person and not from a fake account created just hours ago just for this purpose. Have some guts bro/sis if you are right then no one can do anything to you.
Hello 200ok,
This is Maheshwara Chaitanya, RCD at Amrita for hosting ICPC. I have been organising this contest since 2007 when the participating number was 100-150 teams. Now it has been 3000+ and we are the world's largest ICPC site in terms of participation. I am not a crackpot to host a prestigious contest using a programme created by my own student. Also cautious while choosing a contest platform. Since you haven't mentioned any identity here, your post itself looks suspicious and without any base. I have been using at least 5 platforms in the last 13 years for hosting contests. If you have any constructive feedback, it would look genuine if you could prove yourself as a coder, your credentials openly and then criticise. I would also urge to read out the history of ICPC before posting such kind of comments in a platform like this.
deepa_panwar Vichitr
i am unable to see the submission from yesterday. it is showing me i am unable to see the submission of my team mates i am able to see the submission which are submitted by me
Tried a lot of accounts with GOOGLE AUTH. but every account show this :
NOT ALLOWED TO ACESS
i used google authorisation to sign in.
FIX IT PLEASE
Also give us update about how to claim prize money
Have DM'ed you for more details about the issue.
For prizes, we will run plagarism checks first then share the final winner list with Amrita by next week. They will contact the winners.
Hi, it should be visible now. If still not, let us know.
yeah now it's visible. thanksss
Hello Vichitr deepa_panwar, I have two doubts/issues:-
Fine, thanks
I was taking part ICPC Amritapuri Practice Session #7 [Team Contest]
After contest I upsolve the 2nd problem than I see
solution of this team link is Accepted solution.
but at this Test case: output failed
1
3
1 2
1 2
1 2
Expected output: 2
output: 3
And many other cases the solution fail also.
please see his solution Vichitr,Ashishgup and All testers.why so weak hidden test cases are?
This was such a greedy problem! Setters and testers hand made test cases to fail 10+ greedies. Somehow this case was missed. Few more test cases has been added to the practice problem.
Just to confirm, will our already submitted solutions be automatically run against those new test cases?
Asking this because even our team had a wrong solution which showed accepted in the contest.
Also, another side question -- approximately how many more practice sessions like this can we expect?
This and Alibaba and Thieves are exactly the same problems. Link
I feel this can be avoided in the future contests.
PS: Can't thank you guys enough for all the effort. But I genuinely think that there will be a queue issue during the main ICPC contest as there was an evident queue during this one with around 400 teams. Multiply this by 10 and the contest is totally ruined. Ramp up the servers ASAP or move the platform.
Vichitr Ashishgup
Hi, this is always tried to avoid. Though sometimes it might be the case that its existing. Point taken. Hopefully no existing problem appears again.
On the queue part, we are more cautious than you. We also strive to become a better platform. We would obviously load test with more load than what we are expecting. Ramping up the servers is a quick job for us. This shouldn't be an issue hopefully.
Since you have given editor, therefore, it would be good if we can divide the screen in two parts one for editor and other for problems (just like hackerrank). If we are using editor then it is hard to scroll every time to see the problem.
This ICPC is slowly becoming a joke. When will the date for online qualification contest will be announced?
a lot of my seniors gave up on this year icpc, just because of the pathetic management from icpc coordinators, i hope they know we also have things like placements, internships final exam, i don't know whats taking them so long, we can't just sit here waiting for icpc.
at this rate this year icpc will coincide with next year icpc
anandoham
Typical indian stuff... Delayed, Denied, Injustice
but seriously wtf im thinking about those who are working somewhere now, how will they give icpc now, sitting from their cubicle lmao
deepa_panwar Vichitr
when we will get our prize money....??
Hey dude, prize money is taken care by Amrita. For any queries regarding prizes, please reach out to [email protected]
As far as I know, it would take few months to process it.
Please have a look at this: https://icpc.global/regionals/finder/Asia-Amritapuri-First-Round-2020. It says the preliminary round is on 4 July 2021, but no information about it is given on the amrita website. Kindly confirm this date as soon as possible.
I think that's the date for Regional, not preliminary
No one from Amrita Uni seems to even reply, the mail they give is just a gimmick there is no one even checking the mails
It says "First Round", so I guess it has to be preliminary only.
Yes, please confirm the date(s) of the Online Round (as well as regional, if the dates are announced)