uva11111 Generalized Matrioshkas

题意:相当与括号平衡  不过一个括号的直接子括号的值的和必须要小于这个括号的值!

解题思路:栈中每个元素有两个值,一个值代表括号本身,一个值代表括号直接子括号值的和;

解题代码:

// File Name: uva11111.c
// Author: darkdream
// Created Time: 2013年05月16日 星期四 17时56分48秒

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<time.h>
#include<math.h>
struct node 
{
  int num;
  int temp ;
}nodes[100005];
int main(){
   
   //freopen("/home/plac/problem/input.txt","r",stdin);
   //freopen("/home/plac/problem/output.txt","w",stdout);
   int temp ;
   while(scanf("%d",&temp) != EOF)
   {
        memset(nodes,0,sizeof(nodes));
       int j = 1 , ok = 1;    
        nodes[j].num = temp;
        nodes[j].temp = 0;
      while(getchar() != '\n')
        {
           scanf("%d",&temp);
           if(temp + nodes[j].num == 0)
           {
              if(abs(nodes[j].num) <= abs(nodes[j].temp))
              { 
                  ok = 0;
              }
              j = j-1;
              nodes[j].temp += abs(nodes[j+1].num) ;
              nodes[j+1].temp =  nodes[j+1].num = 0 ;
           }
           else
           {
            j++;
            nodes[j].num = temp;
            nodes[j].temp = 0;
           
           }
            
        }
      if(nodes[1].num != 0 )
          ok = 0;
      if(ok == 1)
          printf(":-) Matrioshka!\n");
      else
          printf(":-( Try again.\n");

   }
return 0 ;
}
View Code
没有梦想,何谈远方
原文地址:https://www.cnblogs.com/zyue/p/3082382.html