The Qualification Round starts on November 21, 2013 at 4:00 PM PT and will last 72 hours.
What are the prizes?
- 1st Place: $10,000 USD
- 2nd Place: $2,000 USD
- 3rd Place: $1,000 USD
- 4th-25th Place: $100 USD
Who gets T-shirts?
The top 100 finishers from Round 2 will get t-shirts.
When the contest starts how can I see the problems??? Where can I submit my codes??? And it's problems are programming problems(like http://mirror.codeforces.com/problemset) or something else???
They will surely announce how to see problems and submit solutions when the contest starts. The problems will be algorithm programming problems.
Thanks!!!
Does the solution have to read/write from standard input/output or from file?
Doesn't matter
Thanks.
Maybe someone will share how he/she bypasses national firewall. I cant access facebook.com because of national firewall. Tried proxies from proxynova.com, failed. :(
Try psiphon3 ,it's very effective with me
I use Ubuntu :( Anyway, thanks.
The easiest way is to use Tor. Alternative would be some free foreign VPN, but it is easily discoverable by DPI and not as convenient to use as Tor (Tor Browser Bundle works out of box without any special configuration).
Sorry , but I'm not familiar with the system of getting the output , how can I get my output into a file after reading the input from a file? Thanks
use standard input/output routine , then
add this line in beginning of main()
"freopen( "out.txt" , "w" , stdout );"
and include "cstdio"
You can use < and > to redirect input and output on command line (both on linux and windows).
For example: - "program.exe < input.txt" ("./program < input.txt" on linux) will run program.exe with input coming from the file "input.txt" (as if you were typing the input that is written on this file) - "program.exe > output.txt" ("./program > output.txt" on linux) will redirect output to file "output.txt" (and create the file if it doesn't exist). Which means that anything that would be printed to the prompt will be written to the file instead.
So, suppose you get the input file from hacker cup ("problem_x_input.txt"), all you need to do is: "program.exe < problem_x_input.txt > output.txt" and you will both read from the input file and output to the other file. Then just upload it :D
I find it way easier to do this than to open a file on my code, etc. (Also, this is neat to know for every other contest in general).
if you are using an IDE, this could be useful:
and dont forget to close the streams:
Closing happens automatically when the program terminates.