#include <cmath>
#include <cstdio>
#include <vector>
#include <map>
#include <iostream>
#include <algorithm>
using namespace std;
vector<string> vec ;
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
vector<string> vec ;
map<string, string> m ;
string TagName, Attribute, Value, QValue;
char EqualSign;
int N, Q ;
cin >> N >> Q ;
for(int i = 0 ; i< N ;i++)
{
cin >> TagName ;
if(TagName[1] == '/') //example like </a>
{
vec.pop_back();
}
else if(TagName.back() == '>') //example like <a>, and NOT </a>
{
vec.push_back(TagName.substr(1,TagName.length() - 2));
}
else //NOT <a> and NOT </a> that has attribute and vale
{
TagName = TagName.substr(1,TagName.length() - 1);
vec.push_back(TagName);
TagName = "" ;
for(auto v : vec)
{
TagName = TagName +"."+ v ;
}
while(1)
{
cin >> Attribute ;
cin >> EqualSign ; // delete "="
cin >> Value ;
if( Value.back() == '>')
{
Value = Value.substr(1,Value.length() - 3);
//because of TagName[0] = '.'
m[TagName.substr(1) + "~" + Attribute] = Value ;
break;
}
else
{
Value = Value.substr(1,Value.length() - 2);
m[TagName.substr(1) + "~" + Attribute] = Value ;
}
}
}
}
for(int i = 0 ; i < Q ; i++)
{
cin >> QValue ;
if(m.find(QValue) != m.end())
{
cout << m.find(QValue)->second << endl;
}
else
{
cout << "Not Found!" << endl;
}
}
return 0;
}
This challenge works with a custom-designed markup language HRML. In HRML, each element consists of a starting and ending tag, and there are attributes associated with each tag. Only starting tags can have attributes. We can call an attribute by referencing the tag, followed by a tilde, '~
' and the name of the attribute. The tags may also be nested.
The opening tags follow the format:<tag-name attribute1-name = "value1" attribute2-name = "value2" ...>
The closing tags follow the format:</tag-name>
The attributes are referenced as:tag1~value
tag1.tag2~name
Given the source code in HRML format consisting of N
lines, answer Q
queries. For each query, print the value of the attribute specified. Print "Not Found!" if the attribute does not exist.
Example
HRML listing
<tag2 name = "name">
<tag3 another="another" final="final">
</tag3>
</tag2>
</tag1>
Queries
tag1~value
tag1.tag2.tag3~name
tag1.tag2~value
Here, tag2 is nested within tag1, so attributes of tag2 are accessed as tag1.tag2~<attribute>
. Results of the queries are:
Query Value
tag1~value "value"
tag1.tag2.tag3~name "Not Found!"
tag1.tag2.tag3~final "final"
Input Format
The first line consists of two space separated integers, N
and Q
. N
specifies the number of lines in the HRML source program. Q
specifies the number of queries.
The following N
lines consist of either an opening tag with zero or more attributes or a closing tag. There is a space after the tag-name, attribute-name, '=' and value.There is no space after the last value. If there are no attributes there is no space after tag name.
Q
queries follow. Each query consists of string that references an attribute in the source program.More formally, each query is of the form tagᵢ₁﹒tagᵢ₂﹒tagᵢ₃﹒﹒﹒﹒tagᵢₓ~attr-name
where x ≥ 1
and tagᵢ₁﹒tagᵢ₂﹒tagᵢ₃﹒﹒﹒﹒tagᵢₓ
are valid tags in the input.
Constraints
200
characters.Q
queries contains at most 200
characters.Output Format
Print the value of the attribute for each query. Print "Not Found!" without quotes if the attribute does not exist.
Sample Input4 3
<tag1 value = "HelloWorld">
<tag2 name = "Name1">
</tag2>
</tag1>
tag1.tag2~name
tag1~name
tag1~value
Sample OutputName1
Not Found!
HelloWorld