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

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

Subway tree systems
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 5735   Accepted: 2370

Description

Some major cities have subway systems in the form of a tree, i.e. between any pair of stations, there is one and only one way of going by subway. Moreover, most of these cities have a unique central station. Imagine you are a tourist in one of these cities and you want to explore all of the subway system. You start at the central station and pick a subway line at random and jump aboard the subway car. Every time you arrive at a station, you pick one of the subway lines you have not yet travelled on. If there is none left to explore at your current station, you take the subway line back on which you first came to the station, until you eventually have travelled along all of the lines twice,once for each direction. At that point you are back at the central station. Afterwards, all you remember of the order of your exploration is whether you went further away from the central station or back towards it at any given time, i.e. you could encode your tour as a binary string, where 0 encodes taking a subway line getting you one station further away from the central station, and 1 encodes getting you one station closer to the central station. 

Input

On the first line of input is a single positive integer n, telling the number of test scenarios to follow.Each test scenario consists of two lines, each containing a string of the characters '0' and '1' of length at most 3000, both describing a correct exploration tour of a subway tree system.

Output

exploration tours of the same subway tree system, or the text "different" if the two strings cannot be exploration tours of the same subway tree system.

Sample Input

20010011101001011010001101100101101001011001001110011000111010101

Sample Output

samedifferent

Source

 
#include 
#include
#include
#include
using namespace std;string str1, str2;char temp[3001];void format_tree(string &str, int begin, int end){ vector
vec; int count = 0, j = begin, i, k; if (begin > end) return; for (i = begin; i <= end; i++) { if (str[i] == '0') count++; else count--; if (count == 0) { format_tree(str, j+1, i-1); for (k = j; k <= i; k++) temp[k-j] = str[k]; temp[i-j+1] = '\0'; vec.push_back(temp); j = i+1; } } sort(vec.begin(), vec.end()); k = begin; for (i = 0; i < vec.size(); i++) { for (j = 0; j < vec[i].length(); j++) str[k++] = vec[i][j]; } vec.clear();}int main(){ int n; cin >> n; while (n--) { cin >> str1 >> str2; format_tree(str1, 0, str1.length()-1); format_tree(str2, 0, str2.length()-1); if (str1 == str2) cout << "same" << endl; else cout << "different" << endl; } return 0;}

 

转载于:https://www.cnblogs.com/eric-blog/archive/2012/08/19/2646830.html

你可能感兴趣的文章
root用户可以引入cx_Oracle包,其他用户不可以导入
查看>>
Linux防火墙iptables学习笔记(二)参数指令
查看>>
Prometheus监控的最佳实践——关于监控的3项关键指标
查看>>
单向的1:n
查看>>
旧电脑如何华丽变身专业上网行为管理设备!
查看>>
linux进程管理及kill命令详解
查看>>
maven pom进阶教程 - 资源文件拷贝插件maven-resources-plugin
查看>>
windows 下 php7.1 配置 redis
查看>>
CentOS7.3编译安装python3.6
查看>>
Debian9.1下取消锁屏
查看>>
OS X 系统体验
查看>>
冲上云霄 之三 初窥中国版Azure
查看>>
下拉框左右选择
查看>>
runtime
查看>>
cursor: mutex X等待事件
查看>>
如何模仿人的学习模式来教计算机程序解数学题?
查看>>
小蚂蚁学习数据结构(35)——直接插入排序
查看>>
java 自定义类的加载器
查看>>
博客门户分享代码
查看>>
启动Tomcat时 is not a readable directory
查看>>