codeforces.ts 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import { SiteDescription, Contest, Problem } from "../types";
  2. // TODO: Use sync requests
  3. const request = require('request');
  4. /**
  5. * contestId: ${contest}
  6. * http://codeforces.com/contest/${contest}/
  7. *
  8. * Example:
  9. * http://codeforces.com/contest/1081/
  10. */
  11. function parseContest(contestId: string | number) {
  12. let problems: Problem[] = [];
  13. let res = request('GET', `http://codeforces.com/contest/${contestId}`);
  14. let body = res.getBody('utf8');
  15. console.log(body);
  16. let pos = body!.indexOf('<option value="generalAnnouncement" data-problem-name="" >', 0) + 1;
  17. while (true){
  18. let option_begin = body!.indexOf('option value="', pos) + 14;
  19. let option_end = body!.indexOf('" data-problem-name', option_begin);
  20. if (option_begin === -1 || option_end === -1){
  21. break;
  22. }
  23. pos = option_end;
  24. let problemId = body!.substring(option_begin, option_end);
  25. let prob = parseProblem(`${contestId}-${problemId}`);
  26. problems.push(prob);
  27. }
  28. return new Contest(problems);
  29. }
  30. /**
  31. * problemId: ${contest}-${problem}
  32. * http://codeforces.com/contest/${contest}/problem/${problem}
  33. *
  34. * Example:
  35. * http://codeforces.com/contest/1081/problem/E
  36. */
  37. function parseProblem(problemId: string) {
  38. let data = problemId.split('-');
  39. let contest = data[0];
  40. let problem = data[1];
  41. var res = request('GET', `http://codeforces.com/contest/${contest}/problem/${problem}`);
  42. let html: string = res.getBody('utf8');
  43. let pos = 0;
  44. let inputs = [];
  45. let outputs = [];
  46. while (true){
  47. pos = html.indexOf('<div class="title">Input</div>', pos);
  48. if (pos === -1){
  49. break;
  50. }
  51. let begin_pre = html.indexOf('<pre>', pos);
  52. let end_pre = html.indexOf('</pre>', pos);
  53. let inputTestcase = html.substring(begin_pre + 5, end_pre);
  54. while (inputTestcase.indexOf('<br />') !== -1){
  55. inputTestcase = inputTestcase.replace('<br />', '\n');
  56. }
  57. pos = html.indexOf('<div class="title">Output</div>', pos);
  58. begin_pre = html.indexOf('<pre>', pos);
  59. end_pre = html.indexOf('</pre>', pos);
  60. let outputTestcase = html.substring(begin_pre + 5, end_pre);
  61. while (outputTestcase.indexOf('<br />') !== -1){
  62. outputTestcase = outputTestcase.replace('<br />', '\n');
  63. }
  64. inputs.push(inputTestcase);
  65. outputs.push(outputTestcase);
  66. }
  67. return new Problem(problem, inputs, outputs);
  68. }
  69. export const CODEFORCES = new SiteDescription(
  70. "codeforces",
  71. "codeforces.com",
  72. parseContest,
  73. parseProblem,
  74. );