Recent Submissions

2025/10/20 02:35:42 mathletesv solved Problem0004 (Line: 3)
2025/10/20 02:35:08 mathletesv solved Problem0003 (Line: 1)
2025/10/20 02:34:49 mathletesv solved Problem0002 (Line: 1)
2025/10/20 02:33:00 mathletesv solved Problem0001 (Line: 1)
2025/10/19 22:47:39 AlexSozz solved Problem0007 (Line: 3)
2025/10/19 22:45:57 AlexSozz solved Problem0006 (Line: 3)
2025/10/19 22:44:00 AlexSozz solved Problem0005 (Line: 1)
2025/10/19 22:42:36 AlexSozz solved Problem0004 (Line: 3)
2025/10/19 22:40:58 AlexSozz solved Problem0003 (Line: 1)
2025/10/19 22:37:47 AlexSozz solved Problem0002 (Line: 1)
2025/10/19 22:36:02 AlexSozz solved Problem0001 (Line: 1)
2025/10/18 20:18:49 nanashi030 solved Problem0020 (Line: 12)
2025/10/18 20:16:41 nanashi030 solved Problem0019 (Line: 5)
2025/10/18 19:41:58 Ryu1045 solved Problem0009 (Line: 4)
2025/10/18 19:40:13 Ryu1045 solved Problem0008 (Line: 3)
2025/10/18 19:01:38 Ryu1045 solved Problem0005 (Line: 1)
2025/10/18 18:32:43 UmigaNaze solved Problem0009 (Line: 4)
2025/10/18 18:21:16 Ryu1045 solved Problem0007 (Line: 3)
2025/10/18 18:16:45 Ryu1045 solved Problem0006 (Line: 3)
2025/10/18 17:55:24 Ryu1045 solved Problem0004 (Line: 3)
2025/10/18 17:54:22 Ryu1045 solved Problem0003 (Line: 1)
2025/10/18 17:53:58 Ryu1045 solved Problem0002 (Line: 1)
2025/10/18 16:12:06 Ryu1045 solved Problem0001 (Line: 1)
2025/10/18 12:46:02 koru solved Problem0084 (Line: 23)
2025/10/18 12:23:18 koru solved Problem0081 (Line: 9)
2025/10/18 12:19:51 koru solved Problem0081 (Line: 10)
2025/10/18 12:18:40 koru solved Problem0080 (Line: 2)
2025/10/16 22:41:26 NP solved Problem0005 (Line: 1)
2025/10/16 22:41:14 NP solved Problem0004 (Line: 3)
2025/10/16 22:41:02 NP solved Problem0003 (Line: 1)
2025/10/16 22:40:51 NP solved Problem0002 (Line: 1)
2025/10/16 22:40:39 NP solved Problem0001 (Line: 1)
2025/10/16 22:40:17 NP solved Problem0007 (Line: 3)
2025/10/16 22:39:50 NP solved Problem0006 (Line: 3)
2025/10/16 19:10:52 ProfessorBarash solved Problem0005 (Line: 1)
2025/10/16 19:08:55 ProfessorBarash solved Problem0010 (Line: 7)
2025/10/16 18:59:20 margo356 solved Problem0004 (Line: 3)
2025/10/16 18:58:59 janenenx solved Problem0004 (Line: 3)
2025/10/16 18:58:41 paleking solved Problem0009 (Line: 4)
2025/10/16 18:58:22 ProfessorBarash solved Problem0009 (Line: 4)
2025/10/16 18:58:11 janenenx solved Problem0003 (Line: 1)
2025/10/16 18:58:07 margo356 solved Problem0003 (Line: 1)
2025/10/16 18:54:34 janenenx solved Problem0002 (Line: 1)
2025/10/16 18:54:15 margo356 solved Problem0002 (Line: 1)
2025/10/16 18:52:37 janenenx solved Problem0001 (Line: 1)
2025/10/16 18:52:18 margo356 solved Problem0001 (Line: 1)
2025/10/16 18:45:18 ProfessorBarash solved Problem0008 (Line: 3)
2025/10/16 18:39:47 ProfessorBarash solved Problem0007 (Line: 4)
2025/10/16 02:19:50 Na1r0 solved Problem0010 (Line: 7)
2025/10/15 19:03:59 nanashi030 solved Problem0018 (Line: 7)

News

About

Markov Algorithm

quote from wikipedia:

The Rules is a sequence of pair of strings, usually presented in the form of pattern → replacement. Each rule may be either ordinary or terminating.

Given an input string:

  1. Check the Rules in order from top to bottom to see whether any of the patterns can be found in the input string.
  2. If none is found, the algorithm stops.
  3. If one (or more) is found, use the first of them to replace the leftmost occurrence of matched text in the input string with its replacement. If the rule just applied was a terminating one, the algorithm stops.
  4. Go to step 1.

Note that after each rule application the search starts over from the first rule.

Syntax and Limitations

pattern:replacement This is ordinary rule. Replace first occurrence of pattern to replacement.
pattern::replacement This is terminating rule. Replace first occurrence of pattern to replacement and the algorithm stops.
empty pattern Empty string matches to the beginning of a string.
comments Lines not containing : are regarded as comments.
spaces Leading/trailing spaces in pattern/replacement are ignored.
step limit The number of replacements must not 50000 times.
string length limit The length of input string must not exceed 500 at any moment.
code length limit The length of the code must not exceed 1000 including comments and blanks.

Specifications

  • Your code will be accepted if it runs correctly for all testcases prepared by the problem writer.
  • The score is calculated based on the number of lines of replacement rules.
  • Scoring formula is min(900*Best / Yours + 100, 1000).
  • The fastest player who solved in fewest lines becomes Top player.
  • However the writer cannot become Top player and his/her solution isn't applied to Best.
  • Testcase hack is not allowed. If I find it, I will edit testcases and run rejudge.