码迷,mamicode.com
首页 > 其他好文 > 详细

小白书训练-Decode the tape

时间:2014-12-01 17:36:37      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   os   sp   on   2014   log   

题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1819

题意:纸带打孔来保持二进制数,打孔便是1,否者为0。这个带子用ASCII保存了一个字符串,一个模拟。用数组使劲RE和WA,无语了。还是一个一个读入过掉的。

代码:

#include <iostream>
#include <cstdio>

using namespace std;

int num[] = {1,1 << 1,1 << 2,1 << 3,1 << 4,1 << 5,1 << 6,1 << 7,1 << 8};

int main()
{
    char s;
    int xb = 8;
    char ts = 0;
    while(~(s = getchar()))
    {
        if(s == '\n')
        {
            if(xb == 0)
            {
                cout << ts;
                xb = 8;
            }
            ts = 0;
        }else
        {
            if(s == 'o')
            {
                ts |= num[xb - 1];
                xb--;
            }else if(s ==' ')
                xb--;

        }
    }
    return 0;
}

梦续代码:http://www.hypo.xyz

小白书训练-Decode the tape

标签:blog   http   io   ar   os   sp   on   2014   log   

原文地址:http://blog.csdn.net/codehypo/article/details/41649895

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!