본문 바로가기

Language Proficiency/C++

Attribute Parser

We have defined our own 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>

For example:

<tag1 value = "HelloWorld">
<tag2 name = "Name1">
</tag2>
</tag1>

The attributes are referenced as:

tag1~value  
tag1.tag2~name

You are given the source code in HRML format consisting of  lines. You have to answer  queries. Each query asks you to print the value of the attribute specified. Print "Not Found!" if there isn't any such attribute.

Input Format

The first line consists of two space separated integers,  and  specifies the number of lines in the HRML source program.  specifies the number of queries.

The following  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.

 queries follow. Each query consists of string that references an attribute in the source program.More formally, each query is of the form ~ where  and  are valid tags in the input.

Constraints

  • Each line in the source program contains, at max,  characters.
  • Every reference to the attributes in the  queries contains at max  characters.
  • All tag names are unique and the HRML source program is logically correct.
  • A tag can have no attributes as well.

Output Format

Print the value of the attribute for each query. Print "Not Found!" without quotes if there is no such attribute in the source program.

Sample Input

4 3
<tag1 value = "HelloWorld">
<tag2 name = "Name1">
</tag2>
</tag1>
tag1.tag2~name
tag1~name
tag1~value

Sample Output

Name1
Not Found!
HelloWorld




이 문제는 거의 머...XML 태그 파서를 만들라는 수준이다. ㅡ.ㅡ;

결코 간단한 알고리즘 로직을 만들라는 문제가 아니다!!

문제를 풀지 못하고 태그 파서 로직을 참고하여 코딩하였다.



'Language Proficiency > C++' 카테고리의 다른 글

StringStream  (0) 2018.08.02
Vector-Sort  (0) 2018.08.01
Attending Workshops  (0) 2018.07.31
Overload Operators  (0) 2018.07.31
Operator Overloading  (0) 2018.07.31