Recent Submissions

2025/08/08 23:29:41 yushui solved Problem0038 (Line: 14)
2025/08/08 23:20:52 yushui solved Problem0034 (Line: 7)
2025/08/08 23:13:43 yushui solved Problem0032 (Line: 10)
2025/08/08 17:43:39 yushui solved Problem0029 (Line: 7)
2025/08/08 16:52:43 yushui solved Problem0026 (Line: 12)
2025/08/08 16:43:11 yushui solved Problem0027 (Line: 11)
2025/08/08 16:35:45 yushui solved Problem0025 (Line: 11)
2025/08/08 16:21:16 yushui solved Problem0051 (Line: 3)
2025/08/08 16:12:19 yushui solved Problem0051 (Line: 5)
2025/08/08 16:11:27 yushui solved Problem0050 (Line: 2)
2025/08/08 16:10:54 yushui solved Problem0049 (Line: 1)
2025/08/08 16:08:15 yushui solved Problem0024 (Line: 32)
2025/08/08 15:59:37 yushui solved Problem0023 (Line: 8)
2025/08/08 15:48:34 yushui solved Problem0022 (Line: 13)
2025/08/08 14:46:26 yushui solved Problem0020 (Line: 12)
2025/08/08 14:37:47 yushui solved Problem0018 (Line: 7)
2025/08/08 14:35:28 yushui solved Problem0015 (Line: 18)
2025/08/08 12:21:24 xp solved Problem0001 (Line: 1)
2025/08/08 11:47:39 yushui solved Problem0012 (Line: 12)
2025/08/08 11:33:44 yushui solved Problem0011 (Line: 11)
2025/08/08 11:07:02 yushui solved Problem0085 (Line: 9)
2025/08/08 11:03:25 yushui solved Problem0085 (Line: 11)
2025/08/08 10:03:52 yushui solved Problem0069 (Line: 3)
2025/08/08 02:46:12 Rejisutiru1 solved Problem0010 (Line: 6)
2025/08/07 20:42:19 yushui solved Problem0037 (Line: 8)
2025/08/07 20:01:39 yushui solved Problem0036 (Line: 3)
2025/08/07 19:55:22 yushui solved Problem0035 (Line: 1)
2025/08/07 19:41:17 yushui solved Problem0014 (Line: 11)
2025/08/07 19:25:52 yushui solved Problem0013 (Line: 10)
2025/08/07 19:25:29 yushui solved Problem0013 (Line: 10)
2025/08/07 17:48:28 yushui solved Problem0016 (Line: 1)
2025/08/07 17:47:48 yushui solved Problem0017 (Line: 2)
2025/08/07 17:41:48 yushui solved Problem0010 (Line: 6)
2025/08/07 17:34:33 yushui solved Problem0019 (Line: 6)
2025/08/07 17:31:55 yushui solved Problem0009 (Line: 4)
2025/08/07 17:11:46 yushui solved Problem0010 (Line: 8)
2025/08/07 17:07:07 yushui solved Problem0009 (Line: 5)
2025/08/07 17:04:17 yushui solved Problem0008 (Line: 3)
2025/08/07 17:02:12 yushui solved Problem0028 (Line: 31)
2025/08/07 16:52:03 yushui solved Problem0028 (Line: 30)
2025/08/07 16:37:57 yushui solved Problem0007 (Line: 3)
2025/08/07 16:36:35 yushui solved Problem0006 (Line: 3)
2025/08/07 16:35:42 yushui solved Problem0005 (Line: 1)
2025/08/07 16:24:03 yushui solved Problem0004 (Line: 3)
2025/08/07 16:12:04 yushui solved Problem0003 (Line: 1)
2025/08/07 16:10:35 yushui solved Problem0002 (Line: 1)
2025/08/07 16:10:06 yushui solved Problem0001 (Line: 1)
2025/08/06 00:35:23 Rejisutiru1 solved Problem0009 (Line: 4)
2025/08/06 00:23:11 Rejisutiru1 solved Problem0008 (Line: 3)
2025/08/06 00:19:30 Rejisutiru1 solved Problem0007 (Line: 3)

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.