Solutions are presented as using the least memory and the fastest execution time. It also takes the top
10 most recent solutions from each language. If you want to limit to a specific index, click the
"Solved" button and go to that problem.
Problems
B'This is an unusual problem in an unusual contest, here is the announcement: http://codeforces.com/blog/entry/73543 You run a string shop. During a day your customers want to buy strings of certain lengths and sometimes satisfying other properties. You have a string of length n and can cut a string of any length starting at any position out of it. Today your first customer asks you some questions of type "Is there any difference between substrings of length k if one of them starts at position i and another one starts from the j -th position?" You are to answer all these questions. Please note that in your shop strings are over an alphabet of size 987 ,898 ,789 . The first line contains two integers n and q ( 1 <= q q, n <= q 200 ,000 ). The second line contains n space-separated integers a_1 , ..., a_n ( 0 <= q a_i < 987 ,898 ,789 ) which denote the letters of string s , and each of the following q lines contains three integers len , pos_1 and pos_2 ( 1 <= q len <= q n , 1 <= q pos_1, pos_2 <= q n - len + 1 ) denoting the corresponding query. Print q lines, i -th of them containing Yes if the two substrings in the i -th query (of length len starting from pos_1 and pos_2 ) are equal and No otherwise. '... |
Tutorials
Submissions
Submission Id |
Author(s) |
Index |
Submitted |
Verdict |
Language |
Test Set |
Tests Passed |
Time taken (ms) |
Memory Consumed (bytes) |
Tags |
Rating |
70176293 |
VArtem andrewzta tourist |
H |
Feb. 3, 2020, 6:36 p.m. |
OK |
GNU C++17 |
TESTS |
19 |
233 |
2457600 |
|
|
70173199 |
300iq Kamfucius orz |
H |
Feb. 3, 2020, 5:52 p.m. |
OK |
GNU C++17 |
TESTS |
19 |
249 |
6656000 |
|
|
remove filters
Back to search problems