CF1493E.Enormous XOR

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given two integers ll and rr in binary representation. Let g(x,y)g(x, y) be equal to the bitwise XOR of all integers from xx to yy inclusive (that is x(x+1)(y1)yx \oplus (x+1) \oplus \dots \oplus (y-1) \oplus y ). Let's define f(l,r)f(l, r) as the maximum of all values of g(x,y)g(x, y) satisfying lxyrl \le x \le y \le r .

Output f(l,r)f(l, r) .

输入格式

The first line contains a single integer nn ( 1n1061 \le n \le 10^6 ) — the length of the binary representation of rr .

The second line contains the binary representation of ll — a string of length nn consisting of digits 00 and 11 ( 0l<2n0 \le l < 2^n ).

The third line contains the binary representation of rr — a string of length nn consisting of digits 00 and 11 ( 0r<2n0 \le r < 2^n ).

It is guaranteed that lrl \le r . The binary representation of rr does not contain any extra leading zeros (if r=0r=0 , the binary representation of it consists of a single zero). The binary representation of ll is preceded with leading zeros so that its length is equal to nn .

输出格式

In a single line output the value of f(l,r)f(l, r) for the given pair of ll and rr in binary representation without extra leading zeros.

输入输出样例

  • 输入#1

    7
    0010011
    1111010

    输出#1

    1111111
  • 输入#2

    4
    1010
    1101

    输出#2

    1101

说明/提示

In sample test case l=19l=19 , r=122r=122 . f(x,y)f(x,y) is maximal and is equal to 127127 , with x=27x=27 , y=100y=100 , for example.

首页