博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
11111 - Generalized Matrioshkas
阅读量:6705 次
发布时间:2019-06-25

本文共 4952 字,大约阅读时间需要 16 分钟。

Problem B - Generalized Matrioshkas 

Time limit: 3.000 seconds

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:

a
1    
a
2    ...    
a
N

such that toy k is represented in the sequence with two integers - k and k, with the negative one occurring in the sequence first that the positive one.

For example, the sequence

-9     -7     -2    2     -3     -2     -1    1    2    3    7    9

represents a generalized matrioshka conformed by six toys, namely, 1, 2 (twice), 3, 7 and 9. Note that toy7 contains directly toys 2 and 3. Note that the first copy of toy 2 occurs left from the second one and that the second copy contains directly a toy 1. It would be wrong to understand that the first -2 and the last 2 should be paired.

On the other hand, the following sequences do not describe generalized matrioshkas:

  •  -9     -7     -2    2     -3     -1     -2    2    1    3    7    9

    because toy 2 is bigger than toy 1 and cannot be allocated inside it.
  •  -9     -7     -2    2     -3     -2     -1    1    2    3    7     -2    2    9

    because 7 and 2 may not be allocated together inside 9.
  •  -9     -7     -2    2     -3     -1     -2    3    2    1    7    9

    because there is a nesting problem within toy 3.

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

 

Sample Output 

:-) Matrioshka!:-( Try again.:-( Try again.:-) Matrioshka!:-( Try again.:-) Matrioshka!:-( Try again.

 


XX Colombian National Programming Contest
 
 
// Address:Uva 11111 - Generalized Matrioshkas (许愿套娃)// level: unconfident// Classify:Data Structure (stack) // Verdict: Accepted [five times] // UVa Run Time: 0.120s // Submission Date: 2012-12-05 12:33:17  // My ID: xueying // Usetime:2 hours// [解题方法]  // 建立两个栈,一个栈实现的功能是输入进行匹配,另一个栈的功能进行判断(一个套娃// 中能够存储足够的套娃,判断错误的情况) // 错误情况根据flag和栈底是否存在元素进行判断 #include
#include
#define MAXN 100000// 第二个栈的存储形式,num存储正整数m,flag == 1 表示两个 -m和m已匹配 typedef struct{ int num, flag;}consist;consist ristack[MAXN]; //第二个栈 int stack[MAXN], temp[MAXN]; //stack是第一个栈,temp存储输入的内容 int main(){ int i, flag, rear, n, top, num; char ch; memset(stack, 0, sizeof(stack)); memset(temp, 0, sizeof(temp)); for(i=0; i
= ristack[rear-1].num) { flag = 1; break; } num = 0; } else if(ristack[rear-1].flag != 1) { flag = 1; break; } } } else { flag = 1; break; } } } if(flag || top) printf(":-( Try again.\n"); else printf(":-) Matrioshka!\n"); memset(stack, 0, sizeof(stack)); memset(temp, 0, sizeof(temp)); for(i=0; i

 

 
 

转载于:https://www.cnblogs.com/liaoguifa/archive/2012/12/05/2803977.html

你可能感兴趣的文章
MSSQL · 最佳实践 · SQL Server备份策略
查看>>
如何调整word中表格某一列占半分比
查看>>
重构——34分解条件表达式(Decompose Conditional)
查看>>
mysql死锁问题分析(转)
查看>>
阿里云推出应用配置管理新工具 助力企业效能几何式提升
查看>>
一个程序员的陪产经历--写在宝宝百日之际
查看>>
汽车有眼睛和有眼睛的汽车
查看>>
SQL Server 数据库中的几个常见的临界值
查看>>
解决IPOD NANO7无法开机
查看>>
HBase的scan源码分析客户端部分之整体流程(一)
查看>>
Adobe终于放大招联网玩Cloud技术了么?
查看>>
openstack基本命令
查看>>
背水一战 Windows 10 (30) - 控件(文本类): AutoSuggestBox
查看>>
ASP.NET Core的路由[1]:注册URL模式与HttpHandler的映射关系
查看>>
港科大KDD 2017录用论文作者详解:基于异构信息网络元结构融合的推荐系统
查看>>
通过扩展改善ASP.NET MVC的验证机制[实现篇]
查看>>
如何缓解Microsoft XML漏洞带来的风险?
查看>>
阿里云启动地震AI大赛:挑战余震震源捕捉
查看>>
在这里 创新是最默契的表达
查看>>
eclipse中spring访问mysql的简易实现
查看>>