Update 0_Silver_Complexity.md

This commit is contained in:
Darren Yao 2020-06-08 16:39:45 -07:00 committed by GitHub
parent 0cac54ec5c
commit d7026d2d16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
# Time/Space Complexity and Algorithm Analysis
### Author: Darren Yao
In programming contests, there is a strict limit on program runtime. This means that in order to pass, your program needs to finish running within a certain timeframe. For USACO, this limit is 4 seconds for Java submissions. A conservative estimate for the number of operations the grading server can handle per second is {10}^8 (but is really closer to 5 \cdot 10^8 given good constant factors).