damihenrique

Untitled

Feb 1st, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. TEN THINGS YOU NEED TO KNOW TO MAKE YOUR OWN CONTEST:
  2. 1. What is the difference between open and private contest?
  3. Criteria Open Contest Private Contest
  4. Problems Only new problems New problems and/or existing problems
  5. Competitors All users can participate Only invited users
  6. 2. What problems can and can't be part of my contest?
  7. It will only be accepted problems written by the creator of the contest or by another author with written authorization.
  8. You can use the problems available at our repository only for Private Contests. It is forbidden to use or replicate them without our written authorization.
  9. The author of the contest will answer acording to the Brazilian Law for any unauthorized use of the problems.
  10. 3. How many problems can my contest have?
  11. Each contest is made up of at most 13 problems.
  12. 4. How should I format the problems of the Contest?
  13. Yes, all the problems should be formatted with the URI Online Judge Builder (www.urionlinejudge.com.br/builder). For necessary files to be generated, you must complete all the fields in Portuguese and English.
  14. Please informe the category, subject and estimated level of difficulty of each problem.
  15. Rename the files generated by the Builder following specification:
  16. Description in Portuguese (X.html);
  17. Description in English (X_en.html);
  18. Configuration File (X.yaml);
  19. X is a letter from A to M indicating the order the problem should be registered.
  20. The title must be in Camel Case, that is, the first letter of each word in uppercase, as shown in the example below.
  21. Figure 1. Header formatting style.
  22. You must boldfacing only variables in the input and output specifications (never in the problem description). You can use italic in the description to represent variables or any other importat information.
  23. Figure 2. Description formatting style.
  24. The limits and restrictions should appear in parentheses after each variable. For example: "The input contains an integer T (0 < T < 100) ...". Different restrictions for the same variable must appear within the same parentheses and you should use asterisks to differentiate them.
  25. Figure 3. Different restrictions for the same variable.
  26. You must identify the contest in the footer of each problem. For example: "My Contest Contest - 2014".
  27. Regarding the paragraphs is important to know that:
  28. They must be between the tags <p></p>;
  29. They should not be broken by <br /> tags;
  30. They should not be justified;
  31. They should not use different font styles.
  32. Note: The system automatically applies the style rules (CSS) when the files are generated.
  33. 5. How many and which files should I send?
  34. Altogether there are approximately 8 files:
  35. The HTML file with description in Portuguese (X.html);
  36. The HTML file with description in English (X_en.html);
  37. The configuration file (X.yaml); ;
  38. The necessary images files (optional) identified by the letter of the problem and a sequence (A_01, A_02, B_01, ...);
  39. Preferably 2 files with source code in C++ (.cpp): one with a solution that should receive "Accepted" and the other one that should receive "Time Limit Exceeded" so we can determine the timelimit of the problem according to our server;
  40. One input file (.in) with maximum size of 12MB*, creted on Linux. If you create this file on Windows should take care with the line break. For Linux (UNIX), the default is LF whether for Windows the default is CRLF. This difference will generate "Presentation Error";
  41. One output file (.sol) with maximum size of 12MB* following the same restrictions described above.
  42. * This is a temporary measure to avoid long queues. 6. What is the maximum timelimit for problems?
  43. The timelimit should be at most 7 seconds. If you really require a large timelimit, please let us know. Remember that large timelimits can create judging queues.
  44. 7. What is the deadline to send all the files?
  45. Contests made up of at most 6 problems: 48 hours before the contest;
  46. Contests made up of more than 6 problems: 72 hours before the contest.
  47. 8. What are the clarifications and how to access them?
  48. The clarifications serve to facilitate communication between the creator of the contest and the contestants, who can through this feature, clarify any questions or communicate any relevant information during the competition.
  49. The exclusive link to access the clarifications page will be provided by the URI Online Judge team the day before the contest.
  50. 9. Can I change the problems during the competition?
  51. Yes it is possible, however we strongly recommend not to. Only in extreme cases there will be changes and these will be made by the URI Online Judge team after evaluation.
  52. 10. I am organizing the contest, can I access the solutions submitted by the competitors?
  53. Yes, but only with the written permission of the participant. The authorization must be sent to [email protected].
Advertisement
Add Comment
Please, Sign In to add comment