zoukankan      html  css  js  c++  java
  • codeforces 570 D. Tree Requests (dfs序)

    D. Tree Requests
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Roman planted a tree consisting of n vertices. Each vertex contains a lowercase English letter. Vertex 1 is the root of the tree, each of then - 1 remaining vertices has a parent in the tree. Vertex is connected with its parent by an edge. The parent of vertex i is vertex pi, the parent index is always less than the index of the vertex (i.e., pi < i).

    The depth of the vertex is the number of nodes on the path from the root to v along the edges. In particular, the depth of the root is equal to1.

    We say that vertex u is in the subtree of vertex v, if we can get from u to v, moving from the vertex to the parent. In particular, vertex v is in its subtree.

    Roma gives you m queries, the i-th of which consists of two numbers vihi. Let's consider the vertices in the subtree vi located at depth hi. Determine whether you can use the letters written at these vertices to make a string that is a palindrome. The letters that are written in the vertexes, can be rearranged in any order to make a palindrome, but all letters should be used.

    Input

    The first line contains two integers nm (1 ≤ n, m ≤ 500 000) — the number of nodes in the tree and queries, respectively.

    The following line contains n - 1 integers p2, p3, ..., pn — the parents of vertices from the second to the n-th (1 ≤ pi < i).

    The next line contains n lowercase English letters, the i-th of these letters is written on vertex i.

    Next m lines describe the queries, the i-th line contains two numbers vihi (1 ≤ vi, hi ≤ n) — the vertex and the depth that appear in the i-th query.

    Output

    Print m lines. In the i-th line print "Yes" (without the quotes), if in the i-th query you can make a palindrome from the letters written on the vertices, otherwise print "No" (without the quotes).

    Sample test(s)
    input
    6 5
    1 1 1 3 3
    zacccd
    1 1
    3 3
    4 1
    6 1
    1 2
    output
    Yes
    No
    Yes
    Yes
    Yes
    Note

    String s is a palindrome if reads the same from left to right and from right to left. In particular, an empty string is a palindrome.

    Clarification for the sample test.

    In the first query there exists only a vertex 1 satisfying all the conditions, we can form a palindrome "z".

    In the second query vertices 5 and 6 satisfy condititions, they contain letters "с" and "d" respectively. It is impossible to form a palindrome of them.

    In the third query there exist no vertices at depth 1 and in subtree of 4. We may form an empty palindrome.

    In the fourth query there exist no vertices in subtree of 6 at depth 1. We may form an empty palindrome.

    In the fifth query there vertices 2, 3 and 4 satisfying all conditions above, they contain letters "a", "c" and "c". We may form a palindrome "cac".

    因为字母的排列顺序是任意的,所以判断能否形成回文串的条件就成了出现次数为奇数的字母的个数是否大于1个,如果是,那么一定不能形成回文串,否则一定可以.

    为了找到以节点v为根的 subtree 中深度为h的后代,需要求出dfs序列,并且记录每个节点初次访问的时间戳和离开它的时间戳,然后二分.

    貌似也可以用树状数组做?

    /*************************************************************************
        > File Name: code/cf/#316/D.cpp
        > Author: 111qqz
        > Email: rkz2013@126.com 
        > Created Time: 2015年08月15日 星期六 02时55分55秒
     ************************************************************************/
    #include <bits/stdc++.h>
    
    
    using namespace std;
    const int N=5E5+7;
    int n,m;
    vector<int> adj[N];
    char S[N];
    vector<int> occ[N][26];
    int in[N], out[N], now;
    
    void dfs(int u, int depth)
    {
        occ[depth][S[u]-'a'].push_back(++now);
        in[u]=now;
        vector<int>::iterator it;
        for (it=adj[u].begin();it!=adj[u].end();it++)
        {
        dfs(*it,depth+1);
        }
        out[u]=now;
    }
    
    int main()
    {
        scanf("%d %d",&n,&m);
        for(int i=2; i<=n; i++)
        {
            int a;
            scanf("%d",&a);
            adj[a].push_back(i);
        }
        scanf("%s", S+1);
        dfs(1, 1);
        while(m--)
        {
            int v, h;
            scanf("%d %d",&v,&h);
            int odd=0;
            for(int i=0; i<26; i++)
            {
                int cnt=upper_bound(occ[h][i].begin(), occ[h][i].end(), out[v])-
                        lower_bound(occ[h][i].begin(), occ[h][i].end(), in[v]);
                if(cnt%2==1)
                {
                    odd++;
                    if(odd>1)
                        break;
                }
            }
            if(odd>1)
                printf("No
    ");
            else
                printf("Yes
    ");
        }
        return 0;
    }
  • 相关阅读:
    高阶函数 练习
    斐波那契数列(Fibonacci sequence)递归函数
    顺序循环队列的基本操作(二)
    顺序循环队列基本操作(一)
    顺序栈的基本操作
    双链表的插入删除
    头插法实现链表逆置
    带头结点单链表的基本操作
    顺序表基本操作
    实现原数组列变成行,再将每一行首尾倒置
  • 原文地址:https://www.cnblogs.com/111qqz/p/4731637.html
Copyright © 2011-2022 走看看