首页 > 代码库 > UVa 10878 Decode the tape
UVa 10878 Decode the tape
题目很简单,代码也很短。第一遍做的时候,我居然二乎乎的把input里面的小框框忽略掉了,所以WA了一次。
每一行代表一个二进制的ASCII码,‘o‘代表1,空格代表0,中间的小黑点忽略。
我直接把一行字符串全读进去,如果字符串以下划线开头说明输入结束(字符串的处理从第2行开始)。
然后从左到右一个字符一个字符的判断,是空格直接*2,是‘o‘先*2后加1,最后算出的就是对应的ASCII值。
Decode the tape
Time Limit: 1 second
"Machines take me by surprise with great frequency." |
Alan Turing
Your boss has just unearthed a roll of old computer tapes. The tapes have holes in them and might contain some sort of useful information. It falls to you to figure out what is written on them.
Input
The input will contain one tape.
Output
Output the message that is written on the tape.
Sample Input | Sample Output |
___________| o . o|| o . || ooo . o|| ooo .o o|| oo o. o|| oo . oo|| oo o. oo|| o . || oo . o || ooo . o || oo o.ooo|| ooo .ooo|| oo o.oo || o . || oo .oo || oo o.ooo|| oooo. || o . || oo o. o || ooo .o o|| oo o.o o|| ooo . || ooo . oo|| o . || oo o.ooo|| ooo .oo || oo .o o|| ooo . o || o . || ooo .o || oo o. || oo .o o|| o . || oo o.o || oo . o|| oooo. o || oooo. o|| o . || oo .o || oo o.ooo|| oo .ooo|| o o.oo || o. o |___________ | A quick brown fox jumps over the lazy dog. |
Problemsetter: Igor Naverniouk
Special thanks: BSD games ppt.
1 //#define LOCAL 2 #include <iostream> 3 #include <cstring> 4 #include <cstdio> 5 using namespace std; 6 7 int main(void) 8 { 9 #ifdef LOCAL10 freopen("10878in.txt", "r", stdin);11 #endif12 int i;13 char str[15], ascii;14 gets(str);15 while(gets(str) && str[0] != ‘_‘)16 {17 ascii = 0;18 for(i = 0; i < strlen(str); ++i)19 {20 if(str[i] == ‘ ‘)21 ascii *= 2;22 if(str[i] == ‘o‘)23 {24 ascii *= 2;25 ascii += 1;26 }27 }28 printf("%c", ascii);29 }30 return 0;31 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。