Gassa's blog

By Gassa, history, 5 years ago, translation, In English

Hi all!

From April 30th to May 14th, Codeforces will host VRt Contest: the second contest organized by VeeRoute. VeeRoute is the developer of planning and management software for transportation and multimodal logistics.

Contest participants will have to solve an optimization problem where local optimization is challenging. The task is similar to those that VeeRoute has to solve regularly. Since the format is nothing like a standard Codeforces round, the contest will be unrated.

Participation

Everyone is welcome to take part in the contest. The consest is for individual participation, with no restrictions on age or division.

Prizes

  • I place — 75 000 RUB (1155 USD)
  • II place — 50 000 RUB (770 USD)
  • III place — 25 000 RUB (385 USD)

Additionally, top 25 participants will get a VRt T-shirt.

Good luck to all participants, and have a great contest!

Announcement of VRt Contest 2019 (marathon)
  • Vote: I like it
  • +229
  • Vote: I do not like it

»
5 years ago, # |
  Vote: I like it -6 Vote: I do not like it

By optimization, does it mean time complexity and memory complexity optimization ? If so , then a solution code for the problem will be given . Am i right ?

»
5 years ago, # |
  Vote: I like it +22 Vote: I do not like it

The execution time of solutions is 15s, does anyone know how to keep track of this and terminate the program accordingly? via a kill singal or similar

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +19 Vote: I do not like it
    double start = clock(); 
    ... 
    // Where you wanna break your program 
    if(start - clock() > 14.9 * CLOCKS_PER_SEC) exit(0); 
    
»
5 years ago, # |
  Vote: I like it -48 Vote: I do not like it

Is it rated?

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +24 Vote: I do not like it

    Since the format is nothing like a standard Codeforces round, the contest will be unrated.

»
5 years ago, # |
  Vote: I like it -14 Vote: I do not like it

Why there are 2 problems and everyone take 0 points on first of them? Is first only for sample?

  • »
    »
    5 years ago, # ^ |
      Vote: I like it +31 Vote: I do not like it

    Why don't you just read the statement before ask a question? Answer on your question is written in Testing section.

»
5 years ago, # |
  Vote: I like it +16 Vote: I do not like it

Why do you hide the time and memory of submissions of this contest? Nevertheless it is still visible at the "Personal submissions" tab in profile.