Блог пользователя sgaflv

Автор sgaflv, 13 лет назад, По-английски
The translation of the country name is not correct. The United Kingdom is not the same as England. Scotland is a part of UK as well as Wales and Northen Ireland. Please replace Англия with Великобритания or else upset Scots will not participate in Codeforces. :-(

For more information have a look in http://www.youtube.com/watch?v=rNu8XDBSn10
:-)

Полный текст и комментарии »

  • Проголосовать: нравится
  • +37
  • Проголосовать: не нравится

Автор sgaflv, 13 лет назад, По-английски

In the player profile it would be very good to have the rating histogram just like the one on the Topcoder.

Because of the way the rating system works on Topcoder, you can see a small bump just before the division change. Is there a bump on Codeforces as well? :)

I also have a feeling that the programmers on Codeforces are stronger on average. Such a histogram would be a good indication of that.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

Автор sgaflv, 13 лет назад, По-английски

We now have two lists of "Top" people. The "Top rated" and "Top contributors" lists.

I think it would be a rewarding experience, if there was yet another "Top solver" list, sorting the registered people by the number of problems they have solved. That would stimulate low rated participants to practice more while enjoying small advancements in another type of ladder. What do you think? :)

Полный текст и комментарии »

  • Проголосовать: нравится
  • -7
  • Проголосовать: не нравится

Автор sgaflv, 13 лет назад, По-английски

The list of problem solutions now has an opportunity to sort by execution time or code size. It would be also great if players could filter out submissions by language. For instance, to see only Haskel solutions.

During the contest it could probably be helpful as well.

Полный текст и комментарии »

  • Проголосовать: нравится
  • +13
  • Проголосовать: не нравится

Автор sgaflv, 14 лет назад, перевод, По-русски
На вид - простая задачка. Но в ней есть подвох!

Что бы её решить, нужен тип - 64-битный int. Проблема возникает, когда используют различные C++ компиляторы на разных платформах и архитектурах.

Сервер соревнований, похоже, 32-битный. Потому недостаточно "long int" (хотя это работает на 64-битной машине).

Не уверен, как лучше объявить такой тип. На моём Linux он называется "__int64_t", но сервер его не принимает. Сервер понимает "__int64", но это уже у меня не компилируется.

Решение, которое сработало: "long long int".

Полный текст и комментарии »

  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится