Problem B - Generalized Matrioshkas |
Vladimir worked for years making matrioshkas, those nesting dolls that certainly represent truly Russian craft. A matrioshka is a doll that may be opened in two halves, so that one finds another doll inside. Then this doll may be opened to find another one inside it. This can be repeated several times, till a final doll -that cannot be opened- is reached.
Recently, Vladimir realized that the idea of nesting dolls might be generalized to nesting toys. Indeed, he has designed toys that contain toys but in a more general sense. One of these toys may be opened in two halves and it may have more than one toy inside it. That is the new feature that Vladimir wants to introduce in his new line of toys.
Vladimir has developed a notation to describe how nesting toys should be constructed. A toy is represented with a positive integer, according to its size. More precisely: if when opening the toy represented by m we find the toys represented by n1, n2, ..., nr, it must be true that n1 + n2 + ... + nr < m. And if this is the case, we say that toy m contains directly the toys n1, n2, ..., nr . It should be clear that toys that may be contained in any of the toys n1, n2, ..., nr are not considered as directly contained in the toy m.
A generalized matrioshka is denoted with a non-empty sequence of non zero integers of the form:
For example, the sequence
On the other hand, the following sequences do not describe generalized matrioshkas:
Your problem is to write a program to help Vladimir telling good designs from bad ones.
Input
The input file contains several test cases, each one of them in a separate line. Each test case is a sequence of non zero integers, each one with an absolute value less than 107.
Output
Output texts for each input case are presented in the same order that input is read.
For each test case the answer must be a line of the form
:-) Matrioshka!
if the design describes a generalized matrioshka. In other case, the answer should be of the form
:-( Try again.
Sample Input
-9 -7 -2 2 -3 -2 -1 1 2 3 7 9 -9 -7 -2 2 -3 -1 -2 2 1 3 7 9 -9 -7 -2 2 -3 -1 -2 3 2 1 7 9 -100 -50 -6 6 50 100 -100 -50 -6 6 45 100 -10 -5 -2 2 5 -4 -3 3 4 10 -9 -5 -2 2 5 -4 -3 3 4 9
解题思路:括号匹配的加强版,只需要多添加一个数值判断。本人卡了很久,找到了一些比较容易错的数据。
1 -1 1 -1
-1 1 -1 1
#include<string.h> #include<stdio.h> #include<stack> using namespace std; #define N 1000010 int num[N]; int cnt; int wa; int ti; struct ma{ int value; int sum; }; int main() { int n; char c; memset(num, 0, sizeof(num)); cnt = 0; while (scanf("%d%c", &num[cnt++], &c) != EOF) { if(c =='\n') { // Init. wa = 0; stack<ma> s; ti = 0; ma now; for (int i = cnt -1; i >= 0; i--) { if(num[i] > 0) { now.value = num[i]; now.sum = 0; s.push(now); } else if(num[i] < 0 && !s.empty()) { now = s.top(); if (now.value == -num[i]) { s.pop(); if (s.empty()) ti++; else { ma change = s.top(); s.pop(); change.sum += now.value; if (change.value <= change.sum) { wa = 1; break; } s.push(change); } } else { now.value = num[i]; now.sum = 0; s.push(now); } } else { wa = 1; break; } } if(ti > 1) wa = 1; if (s.empty() && !wa) printf(":-) Matrioshka!\n"); else printf(":-( Try again.\n"); memset(num, 0, sizeof(num)); cnt = 0; } } return 0;}