码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 161C(分治、性质)

时间:2019-05-12 22:32:20      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:algo   pac   dep   ORC   clu   force   包含   之一   回文   

要点

  • 因为当前最大字符只有一个且两边是回文的,所以如果答案包含最大字符则一定是重合部分。
  • 若不包含,则用此字符将两个区间分别断为两部分,则共有四种组合,答案一定为其中之一。
#include <cstdio>
#include <algorithm>
using namespace std;

int l1, l2, r1, r2;

int Divide(int a, int b, int c, int d, int depth) {
    if (a > b || c > d) return 0;
    int res = max(0, min(b, d) - max(a, c) + 1);
    if ((a <= c && b >= d) || (c <= a && d >= b))   return res;

    int mid = 1 << depth;
    int x[2], y[2], s[2], t[2];
    x[0] = min(a, mid), y[0] = min(b, mid - 1);
    x[1] = max(a, mid + 1) - mid, y[1] = max(b, mid) - mid;
    s[0] = min(c, mid), t[0] = min(d, mid - 1);
    s[1] = max(c, mid + 1) - mid, t[1] = max(d, mid) - mid;

    res = max(res, Divide(x[0], y[0], s[0], t[0], depth - 1));//ll
    res = max(res, Divide(x[0], y[0], s[1], t[1], depth - 1));//lr
    res = max(res, Divide(x[1], y[1], s[0], t[0], depth - 1));//rl
    res = max(res, Divide(x[1], y[1], s[1], t[1], depth - 1));//rr
    return res;
}

int main() {
    scanf("%d %d %d %d", &l1, &r1, &l2, &r2);
    return !printf("%d\n", Divide(l1, r1, l2, r2, 30));
}

Codeforces 161C(分治、性质)

标签:algo   pac   dep   ORC   clu   force   包含   之一   回文   

原文地址:https://www.cnblogs.com/AlphaWA/p/10854012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!