NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

/*6 5
1 1 1 3 3
zacccd
1 1
3 3
4 1
6 1
1 2
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 the n - 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 to 1.

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 vi, hi. 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 n, m (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 vi, hi (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".
using System;
using System.IO;
using System.Text;
using System.Collections.Generic;

namespace Test1
{
class MainClass
{

public class node{
public node(){
child = new List<node>();
}
public node(char d){
data = d;
child = new List<node>();
}
public node(char d, int dp){
data = d;
depth = dp;
child = new List<node>();
}
public List<node> child;
public int depth;
public char data;
};

static node [] all;
static int targetDepth = 1;


static int readNextInt(){
int ans = 0;
int temp;
int _0 = (int)'0';
int _9 = (int)'9';
temp = Console.In.Read ();

while (temp < _0 || temp > _9) {
temp = Console.In.Read();
}

ans = temp - _0;


temp = Console.In.Read ();
while(temp >= _0 && temp <= _9){

ans = (ans << 3) + (ans << 1) + temp - _0;

temp = Console.In.Read();
}
return ans;
}
public static node root;

static void createTree(int nodes){
all = new node[nodes];
all [0] = root = new node ();
root.depth = 1;
int[] parents = new int[nodes];

for (int i = 1; i < nodes; i++) {
parents[i] = readNextInt();
all[i] = new node();
all[parents[i]-1].child.Add(all[i]);
all[i].depth = all[parents[i]-1].depth+1;


}

string labels = Console.In.ReadLine ();
for (int i = 0; i < all.Length; i++) {
all[i].data = labels[i];
Console.WriteLine("node: depth:"+all[i].depth+" data:"+all[i].data);
}



}

const string _yes = "YES";
const string _no = "NO";
public static void Main (string[] args)
{
int nodes = readNextInt ();
int tests = readNextInt ();

createTree (nodes);
bool[] ans = new bool[tests];

for (int t = 0; t < tests; t++) {
int n1 = readNextInt();
int r1 = readNextInt();

List<char> chars = new List<char> ();
targetDepth = r1;

if(targetDepth < all[n1-1].depth){
ans[t] = false;
continue;
}
string x = traverse(all[n1-1],new StringBuilder());

for (int i = 0; i < x.Length; i++) {
if(chars.Contains(x[i])){
chars.Remove(x[i]);
}else{
chars.Add(x[i]);
}
}

if (x.Length % 2 == 0 && chars.Count == 0) {
ans[t] = true;
} else if (x.Length % 2 != 0 && chars.Count == 1) {
ans[t] = true;
} else {
ans[t] = false;
}

//Console.WriteLine ("nTraverse: "+x);
}

for (int i = 0; i < ans.Length; i++) {
if(ans[i]){
Console.WriteLine(_yes);
}else{
Console.WriteLine(_no);
}
}
}


static string traverse(node n, StringBuilder sb){
if(n.depth == targetDepth){
sb.Append(n.data);
}
if(n.child != null)
for (int i = 0; i < n.child.Count; i++) {
traverse(n.child[i], sb);
}

return sb.ToString ();
}

static string traverseX(node n, StringBuilder sb){

sb.Append(n.data);

if(n.child != null)
for (int i = 0; i < n.child.Count; i++) {
traverseX(n.child[i], sb);
}

return sb.ToString ();
}
}
}

*/

     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.