Codeforces 558D Guess Your Way Out! II (简单题)

题目类型简单题

题目意思

有一棵高度最多 50 的完美二叉树, 其中只有一个叶子结点是出口
给出最多 1e5 个说明,每个操作包含 4 个参数 i, L, R, ans
当 ans == 0 时 说明出口在第 i 层的祖先不包含在区间 [L, R] 中 (根结点为第1层)
当 ans == 1 时 说明出口在第 i 层的祖先必包含在区间 [L,R] 中 (任何一个叶子结点在第 1 层的祖先都是结点 1)
问这些 说明 组合出的结果是否是矛盾的,如果不矛盾是否是唯一的

解题方法

方法一:
比较繁琐。
分析下可以发现 首先把每个区间转化成最后一层的区间(转化方法就是L不断乘2,R不断乘2再加1),然后把每个说明确定的可能区间作交集就是结果
如果 ans == 0 时说明 出口在第 i 层的祖先不包含在区间 [L, R] 中 这个等价于包含在 [第i层最左结点, L-1] 或 [R+1,第i层最右结点],且这两个区间无交集 (这两个区间就是 ans == 0时确定的可能区间, ans == 1 时确定的可能区间就是 [L, R])
暴力的方法就是对于每个可能区间从左到右 for 一次,区间覆盖的每个结点的被覆盖次数都加 1 ,最后被覆盖次数等于 q 次的结点就是可能的出口结点,由于题目 L, R 数据范围较大可以用 离散化 + 线段树统计,详细方法看代码

方法二:
比较简单的做法。(直接看代码比较好理解)
首先把每个区间转化成最后一层的区间, 然后对于 ans == 1 的所有区间和最后一层的大区间做交集(不断两两合并即可),这样会得出一个连续的出口候选区间[l,r],然后把 ans == 0的区间按左端点从小到大排序(把区间 [r+1, 最后一个结点]也放进去排序) 然后从左到右扫一次这批区间(假设为 Li, Ri),如果 Li > l 说明存在可能的最终结点(这时如果 Li - l > 1说明最终结果不唯一,如果刚好等于1先保存下来),然后把 l 更新为 Ri+1再接着扫描后面的区间,最终如果没有中途保存下来的结点则答案是矛盾的 如果中途保存的结点数大于1则是不确定的,否则唯一的结点就是之前保存的那个结点

参考代码 - 有疑问的地方在下方留言 看到会尽快回复的

方法一:
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

#define ls (rt<<1)
#define rs ((rt<<1)|1)
#define mid ((l+r)>>1)

const int MAXN = (int)1e5 + 10;
typedef long long LL;

LL c[MAXN*4][2];
int tree[MAXN*4*4];
int add[MAXN*4*4];
int n_max[MAXN*4*4];

struct TCmd {
    LL i, l, r, ans;
}cmd[MAXN];

LL calc_right(LL now, LL x) {
    for( LL i=0; i mid) insert(rs, mid+1, r, L, R);
    else {
        insert(ls, l, mid, L, mid);
        insert(rs, mid + 1, r, mid +1, R);
    }
    n_max[rt] = max(n_max[ls], n_max[rs]);
}

LL A[MAXN*4];

int main() {
    freopen("in", "r", stdin);
    int h;
    while(scanf("%d%d", &h, &q) != EOF) {
        if(q == 0) {
            if(h == 1) printf("1\n");
            else printf("Data not sufficient!\n");
            continue;
        }
        LL r_max = (1LL<= 2) {
                    break;
                }
            }
        }
        if(sum >= 2) printf("Data not sufficient!\n");
        else if(sum == 0) printf("Game cheated!\n");
        else printf("%I64d\n", ans);
    }
    return 0;
}

方法二:
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

#define ls (rt<<1)
#define rs ((rt<<1)|1)
#define mid ((l+r)>>1)

const int MAXN = (int)1e5 + 10;
typedef long long LL;
pairinv[MAXN];

struct TCmd {
    LL i, l, r, ans;
}cmd[MAXN];

LL calc_right(LL now, LL x) {
    for( LL i=0; i l_max) {
                if(inv[i].first - l_max > 1 || ans) {
                    printf("Data not sufficient!\n");
                    ans = -1;
                    break;
                }
                else ans = l_max;
            }
            l_max = max(l_max, inv[i].second+1);
        }
        if(ans == -1) continue;
        if(ans == 0) printf("Game cheated!\n");
        else printf("%I64d\n", ans);
    }
    return 0;
}

你可能感兴趣的:(简单题)