CF161C.Abracadabra
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarpus analyzes a string called abracadabra. This string is constructed using the following algorithm:
- On the first step the string consists of a single character "a".
- On the k -th step Polycarpus concatenates two copies of the string obtained on the (k−1) -th step, while inserting the k -th character of the alphabet between them. Polycarpus uses the alphabet that consists of lowercase Latin letters and digits (a total of 36 characters). The alphabet characters are numbered like this: the 1-st character is "a", the 2-nd — "b", ..., the 26-th — "z", the 27-th — "0", the 28-th — "1", ..., the 36-th — "9".
Let's have a closer look at the algorithm. On the second step Polycarpus will concatenate two strings "a" and insert the character "b" between them, resulting in "aba" string. The third step will transform it into "abacaba", and the fourth one - into "abacabadabacaba". Thus, the string constructed on the k -th step will consist of 2k−1 characters.
Polycarpus wrote down the string he got after 30 steps of the given algorithm and chose two non-empty substrings of it. Your task is to find the length of the longest common substring of the two substrings selected by Polycarpus.
A substring s[i... j] ( 1<=i<=j<=∣s∣ ) of string s = s1s2... s∣s∣ is a string sisi+1... sj . For example, substring s[2...4] of string s = "abacaba" equals "bac". The string is its own substring.
The longest common substring of two strings s and t is the longest string that is a substring of both s and t . For example, the longest common substring of "contest" and "systemtesting" is string "test". There can be several common substrings of maximum length.
输入格式
The input consists of a single line containing four integers l1 , r1 , l2 , r2 ( 1<=li<=ri<=109 , i=1,2 ). The numbers are separated by single spaces. li and ri give the indices of the first and the last characters of the i -th chosen substring, correspondingly ( i=1,2 ). The characters of string abracadabra are numbered starting from 1 .
输出格式
Print a single number — the length of the longest common substring of the given strings. If there are no common substrings, print 0.
输入输出样例
输入#1
3 6 1 4
输出#1
2
输入#2
1 1 4 4
输出#2
0
说明/提示
In the first sample the first substring is "acab", the second one is "abac". These two substrings have two longest common substrings "ac" and "ab", but we are only interested in their length — 2.
In the second sample the first substring is "a", the second one is "c". These two substrings don't have any common characters, so the length of their longest common substring is 0.