• Turing Tape CodeForces


    codeforces 133c

    题意

    给你一串字符串,包含1~105个字符。按照规则输出数字。

    1. The 8-bit binary notation of the ASCII-code of the previous printed character is reversed. When the first element of the array is processed, the result of this step is considered to be 0. 将ASCII码反转过来。

    2. The i-th element of the array is subtracted from the result of the previous step modulo 256. 用前一个值减去这个值,并且模256,如果这是第一个那么前一个值为0.

    3. The binary notation of the result of the previous step is reversed again to produce ASCII-code of the i-th character to be printed. 输出,继续。

    样例

    Input

    Hello, World!
    

    Output

    238
    108
    112
    0
    64
    194
    48
    26
    244
    168
    24
    16
    162
    

    Note

    Let's have a closer look at the beginning of the example. The first character is "H" with ASCII-code 72 = 010010002. Its reverse is 000100102 = 18, and this number should become the result of the second step of processing. The result of the first step is considered to be 0, so the first element of the array has to be (0 - 18) mod 256 = 238, where a mod b is the remainder of division of a by b.

    思路

    • 按照他的步骤做就好了
    • 输入的时候卡了一下,要用getline(cin,s); s是string类型的。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    const int MAXN=105;
    int a[MAXN];
    const int MOD= 256;
    string s;
    int main(){
    	getline(cin,s);
    	int len=s.size();
    	int tmp,t;
    	for(int i=1;i<=len;i++){
    		a[i]=s[i-1];
    		tmp=a[i];
    		t=0;
    		int j=0;
    		while(tmp){
    			j++;
    			if(tmp&1){
    				t+=1<<(8-j);
    			}
    			tmp>>=1;
    		}
    		a[i]=t;
    		printf("%d
    ", (a[i-1]-a[i]+MOD)%MOD);
    	}	
    	return 0;
    }
    
  • 相关阅读:
    [Swift]todoList压栈
    Backtrack下的dns爆破工具的目录
    Linux如何设置dns
    预防黑客入侵 防黑必学的cmd命令vs网络安全
    SSL协议详解
    CDN(内容分发网络)技术原理
    社工数据搜索引擎搭建
    实战 SSH 端口转发
    Sublime Text编辑器如何隐藏顶部的菜单栏
    Sublime Text 2 -Sidebar 背景色调整为黑色
  • 原文地址:https://www.cnblogs.com/xuwanwei/p/12802679.html
Copyright © 2020-2023  润新知