Доброго времени суток, сообщество Codeforces!
Рад Вам сообщить, что мы в очередной раз делаем раунд из задач одной из олимпиад для саратовских школьников. На этот раз — раунд для второго дивизиона. Раунд начнется в необычное для Codeforces время: 11 ноября в 12:00 MSK
Задачи были подготовлены MikeMirzayanov и мной, в написании альтернативных решений нам помогали Fefer_Ivan и Gerald.
Участники из первого дивизиона, как обычно, могут поучаствовать вне конкурса.
Разбалловка стандартная: 500-1000-1500-2000-2500.
UPD: Опубликован разбор на английском.
UPD 2: В задаче E изначальное авторское решение (оно, к сожалению, было одно) было неправильным. Однако, ответы ко всем претестам были корректные. После контеста авторское решение было исправлено, все решения по задаче E были перетестированы.
UPD 3: Появились окончательные результаты, рейтинг обновлен.
Why the contest is only for div 2?
It is a contest for singles~~~~november 11th~round 211...Monday...So many "one"!
What's the meaning of schoolchildren? Which ages does it contain?
This olympiad is for students from 8th to 11th grades of Russian school.
Задача "B" оказалась намного легче "A"
"А" тоже элементарная. Простой способ: расписать if-ы для каждой цифры.
Ребят, может кто подскажет насчет задачи "C", там в условии стоит ограничение на длину строки в 2 * 10^5
А у меня мысль для решении такая: пробежаться по строке и проверять на наличие ошибок.
Но если длина строки окажется даже 10^5, то вряд ли я смогу уложиться в 1сек.
Как вы ее решили?
Разве это корректно — обсуждать еще не закончившийся контест?
E was a nice problem.
Как D решать?
Решение за O(NlogN). Делаем бинпоиск по количеству взятых велосипедов. Пусть сейчас мы хотим проверить, можно ли взять X велосипедов.
Считаем Cost — количество денег, необходимое для покупки X самых дешёвых велосипедов. Потом берём X самых богатых детей, считаем, сколько их наличных денег мы можем максимально истратить, пусть это количество равно Cash. Проверяем, что Cash + Budget ≥ Cost, тогда для того, чтобы набрать X велосипедов нам нужно max(0, Cost - Budget) личных денег.
Действительно просто:)
Спасибо большое за разбор!
Nope
Happiness is
Может я что-то не понимаю, но как линейное решение могло заТЛится на 8-ом тесте, который (ИМХО = 8 претест, или я не прав?) прошел во-время соревнования?
Вот эта строчка работает за длину строки.
Ну афигеть, а как тогда эффективно дописать к строчке символ?
И все же разве 8 тест != 8 претест?
t += s[i — 1]; t += s[i — 1];
Это никто не отменял. O(1).
Использовать массив char'ов.
Еще можно t.push_back(s[i]);
И у тебя решение громоздкое. Взгляни на мое. Если строка-результат пустая, то кладу в нее символ, если в строке больше одного символа и текущий символ равен последним двум символам в строке, то я текущий символ не добавляю в строку-результат. Так же, если в строке больше двух символов и два предпоследних равны, и последний с текущим равны, то тоже не кладу символ в строку результат. Как-то так.
http://codeforces.net/contest/363/submission/5066025
Но 8 претест == 8 тест, как так?
Can someone give the approach to solve problem D : Rent Bike ? Thanks in advance...
Sorry for my English :)
Ohh , why did I sleep through this contest :( . It looks like I missed a cool codeforces round :) .
can someone explain me the reason why this solution did not passed?
t contains 2 chars now, but in answer there is only one (s[0]).
s[1] does not exist at all, actually, so that I wonder why it is not runtime error :)
and what will change then in string t after this? t is same as answer,
What is s[1] ? You think that it is empty?
You read string in s, but its length is 1, so that you didn't determine what is s[1]. The only character will be written in s[0], so that s[1] is undetermined.
I thought so ;(
Thanks! My solution failed because of this too!
I think that s[s.size()]='\0', got AC using printf("%s",t.c_str()); 5066622
Problems were very interesting. Thanks to Authors...!!!
Во время контеста пытался взломать по задаче B тестом :
100000 100000
100 100 100 100...
но каждый раз выходило FAIL Unexpected character #13, but ' ' expected (stdin) [validator v.exe returns exit code 3] или FAIL Expected EOLN (stdin) [validator v.exe returns exit code 3], почему?
Same discussion.
Same thing happened to me! My Submission fails on test 15:
Input
zz
Output
zz
Answer
zz
Checker comment
wrong answer Result is not a subsequence: 'zz' not in 'zz'
it maybe due to this piece of code
u are adding 2 characters to
ans
, when there is only one character in input.EDIT: but what i dont know is why this resulted in Wrong Answer rather than Runtime Error. also, i agree with you that the Checker Log is contradicting itself!
Yes. Thanks. It should add an extra '\0' to the output string. Removing it, it gets AC. But, I wonder why would an extra null cause checker program to fail.
printf("%c",'\0') or cout<<'\0' will print a space.
string str(10,'\0');
cout<<str; will print 10 spaces while printf will stop at the first '\0'.
-- MS C++!
Didn't know that. Thanks! :)
Кто как решал задачу D? У меня бинпоиск по количеству взятых велосипедов. Может ли там зайти какая-нибудь жадность?
Тоже интересно. Я пытался двумя указателями, но ошибку в коде не нашел.
.
:)
In problem B , I solved in notebook using val += h[i] — h[g]; and unknowingly missed the + sign during coding 5061002 ,as the pretest passed i did not go through the code once :(
I got WA in Problem C (test 15) while my program gives the correct answer!
Here's my Submission
Can anyone tell me why this happened?
This part is causing the problem : ~~~~~ if(s[0] == s[1] && s[1] == s[2]){ index = 2; }else{ s1[2] = s[2]; index = 3; }
~~~~~
For the given case "zz", s[2] does not exist, thereby the control goes to the else condition and index is set to 3. So you are actually printing extra space along with your answer, which is invalid.
in this case...s[2]='\0',it can't be printed...and the '\0'(0) is not the ' '(32)....in ascii...
yes, my bad ... :( it is '\0' and shouldn't be printed. So the reason which I gave you, regarding your control going to the else condition is correct, whereas you are printing '\0'. Thanks for correcting me mathlover :)
Только я мог за "С" получить баллов меньше, чем за "А" :)
Поговори мне о баллах за С.
Problem E is very nice, but nobody got E accepted during the contest... When will the solution be published?
It's weird that I and several people got the same output for test 20. Is there something tricky in the problem that we possibly misunderstood?
I just fixed the bug I had in contest and now I also get incorrect on test 20. Weird...
So do I!
Как решать E?
How is the standings is computed? Through the submission is accepted, but the standings is so low:(. Can someone explain for me, 3kq.
See Codeforces contests' format, you'll figure out.
Got it!thank you!
Can anyone tell.why my this solution failed? 5062164
Ok.Null charachter was the issue. But i want to know.Why did WA came on 52nd test case when i did not put null charachter in the Output string and printed using %s.
Test: #6, time: 0 ms., memory: 792 KB, exit code: 0, checker exit code: 1, verdict: WRONG_ANSWER Input aaa Output aa Answer aa Checker Log wrong answer Result is not a subsequence: 'aa' not in 'aaa'
why aa is not in aaa?? http://codeforces.net/contest/363/submission/5062051
This contest was much easier with comparison to the previous ones...
but the E... only one person ac it in the last minute...
Please !!! Update the rating !!! :( Eagerly waiting for that .....
How to get the test datas?
while trying to submit solutions in practice for today's contest, i got a message saying "Practice is allowed only for finished and unfrozen contests".
can anybody help me with this? thanks.
Interesting. Why am I the Candidate Master with rating 1699?
I'm Master with rating 1408 :) I think they rollback rating because of some problems related to problem "E"
This is "expert" not "master"
It seems the rating change for this match has been reverted due to an issue of problem E,but they forgot to update the handle colour.....
Рейтинг пересчитывать что ли будут?
Can you provide an official information of whether the contest will be rated or less?
When will we have the Final standings?
The editorial for problem E seems like brute force...What a strong test server...
This was my 100th rated contest on codeforces. After the contest, I have my highest score in an individual contest(4076) , my best rank in a contest (31), my highest rating so far (1742).
PS — How many people have 100+ contest on codeforces. Who has the highest number of matches? I know Egor with 111 rated contest. Anyone higher ?
Are you happy now?
PAG, ruban