标题:明码
汉字的字形存在于字库中,即便在今天,16点阵的字库也仍然使用广泛。
16点阵的字库把每个汉字看成是16x16个像素信息。并把这些信息记录在字节中。
一个字节可以存储8位信息,用32个字节就可以存一个汉字的字形了。
把每个字节转为2进制表示,1表示墨迹,0表示底色。每行2个字节,
一共16行,布局是:
第1字节,第2字节
第3字节,第4字节
....
第31字节, 第32字节
这道题目是给你一段多个汉字组成的信息,每个汉字用32个字节表示,这里给出了字节作为有符号整数的值。
题目的要求隐藏在这些信息中。你的任务是复原这些汉字的字形,从中看出题目的要求,并根据要求填写答案。
这段信息是(一共10个汉字):
4 0 4 0 4 0 4 32 -1 -16 4 32 4 32 4 32 4 32 4 32 8 32 8 32 16 34 16 34 32 30 -64 0
16 64 16 64 34 68 127 126 66 -124 67 4 66 4 66 -124 126 100 66 36 66 4 66 4 66 4 126 4 66 40 0 16
4 0 4 0 4 0 4 32 -1 -16 4 32 4 32 4 32 4 32 4 32 8 32 8 32 16 34 16 34 32 30 -64 0
0 -128 64 -128 48 -128 17 8 1 -4 2 8 8 80 16 64 32 64 -32 64 32 -96 32 -96 33 16 34 8 36 14 40 4
4 0 3 0 1 0 0 4 -1 -2 4 0 4 16 7 -8 4 16 4 16 4 16 8 16 8 16 16 16 32 -96 64 64
16 64 20 72 62 -4 73 32 5 16 1 0 63 -8 1 0 -1 -2 0 64 0 80 63 -8 8 64 4 64 1 64 0 -128
0 16 63 -8 1 0 1 0 1 0 1 4 -1 -2 1 0 1 0 1 0 1 0 1 0 1 0 1 0 5 0 2 0
2 0 2 0 7 -16 8 32 24 64 37 -128 2 -128 12 -128 113 -4 2 8 12 16 18 32 33 -64 1 0 14 0 112 0
1 0 1 0 1 0 9 32 9 16 17 12 17 4 33 16 65 16 1 32 1 64 0 -128 1 0 2 0 12 0 112 0
0 0 0 0 7 -16 24 24 48 12 56 12 0 56 0 -32 0 -64 0 -128 0 0 0 0 1 -128 3 -64 1 -128 0 0
注意:需要提交的是一个整数,不要填写任何多余内容。
答案:387420489
问题分析:问题的关键是将一个十进制数转换为对应的2进制表示。因为一个一个字节只有8位,通过按位与的方式可以测试第0到第7位是0还是1,将测试结果输出就行。
另外一种方法是使用STL的bitset类库进行处理。简单来说就是定义一个bitset<8> 类型的变量bs,将每一个十进制数字赋值给bs,然后直接调用bs的to_string()函数就可以将其二进制表示以字符串形式输出
bitset百度百科
bitset成员函数说明
#include <iostream>
#include <cmath>
using namespace std;
void solve(int a){
if((a & 128) == 0) cout << ' '; else cout << '1'; //如果该位为0,输出空格容易辨认
if((a & 64) == 0) cout << ' '; else cout << '1';
if((a & 32) == 0) cout << ' '; else cout << '1';
if((a & 16) == 0) cout << ' '; else cout << '1';
if((a & 8) == 0) cout << ' '; else cout << '1';
if((a & 4) == 0) cout << ' '; else cout << '1';
if((a & 2) == 0) cout << ' '; else cout << '1';
if((a & 1) == 0) cout << ' '; else cout << '1';
}
int main(){
int p[11][33];
for(int i = 0;i<10;i++){
for(int j = 0;j<32;j++){
cin >> p[i][j];
}
}
for(int i = 0;i<10;i++){
for(int j = 0;j<32;j++){
solve(p[i][j]);
if(j%2!=0)
cout << endl;
}
cout << endl;
}
long long res = pow(9,9);
cout << res << endl;
return 0;
}
bitset方法
#include <iostream>
#include <bitset>
using namespace std;
int main(){
int a;
bitset<8> bs;
for(int i = 0;i<10;i++){
for(int j = 0;j<32;j++){
cin >> a;
bs = a;
cout << bs.to_string();
if(j%2!=0)
cout << endl;
}
cout << endl;
}
}