Всем добрый вечер. Хотя, конечно, не совсем он и добрый.
Как-то совсем не задался сегодняшний раунд, за что я приношу свои извинения. Во время контест мне удалось частично локализовать проблему, надеюсь мы все поправим к следующему раунду. По-видимому, было две проблемы: 1) не открывались иногда страницы (сайт приходилось перегружать), 2) при попытки взлома возникали неадекватные сообщения, что взлом уже осуществлен. Будем разбираться. Спасибо за терпение.
Учитывая все вышенаписанное, мы решили делать раунд нерейтинговым.
К следующему раунду у меня прибавляется работы, тем более, что я собираюсь быть его автором :)
М.
UPD: надо мне быть внимательнее...
Как это он будет рейтинговый? 0_о Откуда сведения?
By following your link , I got this http://www.codeforces.com/blog/entry/417?locale=ru , I will now use Visual C++.
No need of C and C++(gnu) altogether.
Is %s also a problem?
Because this code passed on MS C++ but not on GNU .
PROBLEM B.
#include<vector>
#include<map>
#include<iostream>
#include<algorithm>
#include<stdio.h>
using namespace std;
int main()
{
map<char,long long int> c;
long long int ans;
long long int i;
char s[100001];
scanf("%s",s);
i=0;
while(s[i]!='\0')
{
c[s[i]]++;
i++;
}
ans=0;
for(i=0;i<c.size();i++)
{
ans+=c[i]*(c[i]-1)+c[i];
}
cout<<ans;
scanf("%*d");
return 0;
}
It was like waiting in queue trying to refresh the page in hope to see when I get a chance to submit, in the end I got two problems solved (I came to know what problem E was only after the contest got over!), I think codeforces is getting too popular and there is something participants should do, like donate some amount to you so you can buy a new server?
This was my best performance on Codeforces and now its unrated.. :(