conn.ts 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import { Contest, Problem, SiteDescription } from "./types";
  2. /**
  3. * Not a real site.
  4. *
  5. * Util to create personal problems and debug this tool.
  6. */
  7. export const PERSONAL = new SiteDescription(
  8. "personal",
  9. "Not a site. Custom problems and contest.",
  10. "Contest name",
  11. "Problem name",
  12. async numProblems => {
  13. let total = Number.parseInt(numProblems);
  14. let problems = [];
  15. for (let i = 0; i < total; i++) {
  16. problems.push(new Problem(`P${i + 1}`, `P${i + 1}`, ["0\n", "2\n", "9\n"], ["2\n", "4\n", "11\n"]));
  17. }
  18. return new Contest("personal", problems);
  19. },
  20. async problemId => {
  21. return new Problem(problemId, problemId, ["0\n", "2\n", "9\n"], ["2\n", "4\n", "11\n"]);
  22. }
  23. );
  24. /**
  25. * Not a real site.
  26. *
  27. * Create an empty contest that will be filled by user manually.
  28. */
  29. const EMPTY = new SiteDescription(
  30. "empty",
  31. "Not a site. Create empty problems",
  32. "Contest name",
  33. "Problem name",
  34. async problemId => {
  35. // Parse problemId. It is of the form problem-name-10
  36. // Where `problem-name` is current name and `10` is number of problems
  37. let args = problemId.split('-');
  38. let numProblems = args[args.length - 1];
  39. let total = Number.parseInt(numProblems);
  40. args.pop();
  41. let name = args.join('-');
  42. let problems = [];
  43. for (let i = 0; i < total; i++) {
  44. let name = `Z${i - 25}`;
  45. if (i < 26) {
  46. name = String.fromCharCode(i + 65);
  47. }
  48. problems.push(new Problem(name, name, [], []));
  49. }
  50. return new Contest(name, problems);
  51. },
  52. async problemId => {
  53. return new Problem(problemId, problemId, [], []);
  54. }
  55. );
  56. /**
  57. * Register a new site creating an entry in this dictionary.
  58. */
  59. export const SITES: SiteDescription[] = [
  60. EMPTY,
  61. ];
  62. export function getSite(site: string): SiteDescription {
  63. let result = undefined;
  64. SITES.forEach(siteDescription => {
  65. if (siteDescription.name === site) {
  66. result = siteDescription;
  67. }
  68. });
  69. if (result !== undefined) {
  70. return result;
  71. }
  72. throw new Error("Provided site is invalid");
  73. }