蓝桥杯2018初赛 明码
url: http://oj.ecustacm.cn/problem.php?id=1369
tag:
模拟
思路:
求字节的二进制表示,其实就是求每个数的补码。对于正数来说,补码就是原码。对于负数来说,先是对原码求反码然后再加1.对于-128来说比较特殊,补码是10000000,通过正常的求法求不出,所以需要特殊判断。
代码:
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cmath>
using namespace std;
int num[10];
void resoult(int a)
{
int j = 8;
while(a)
{
num[j --] = a % 2;
a /= 2;
}
}
void inverse()
{
for (int i = 2; i <= 8; i ++)
{
if (num[i] == 0) num[i] = 1;
else num[i] = 0;
}
num[8] += 1;
for (int i = 8; i >= 3; i --)
{
num[i - 1] += num[i] / 2;
num[i] %= 2;
}
}
void binary(int a)
{
if (a == -128)
{
cout << "1 " << endl;
return;
}
memset(num, 0, sizeof num);
if (a >= 0)
{
num[1] = 0;
resoult(a);
}
else
{
num[1] = 1;
resoult(abs(a));
inverse();
}
}
void print()
{
for (int i = 1; i <= 8; i ++)
{
if (num[i]) cout << 1;
else cout << ' ';
}
}
int main()
{
for (int i = 0; i < 10; i ++)
{
for (int j = 0; j < 16; j ++)
{
int a, b;
cin >> a >> b;
binary(a);
print();
binary(b);
print();
cout << endl;
}
cout << endl;
}
return 0;
}
简洁版:
#include <iostream>
#include<cstring>
using namespace std;
int num[10];
void print()
{
for(int i=1;i<=8;i++) printf("%c",num[i]==1?"1":" ");
}
int main()
{
int a,b;
for(int i=1;i<=10;i++)
{
for(int j=1;j<=16;j++)
{
cin>>a>>b;
memset(num,0,sizeof(num ));
for(int k =8;k>=1;i--) num[k]&=a,a>>=1;
print();
memset(num,0,sizeof(num ));
for(int k =8;k>=1;k--) num[k]&=b,b>>=1;
print();
cout<<endl;
}
cout<<endl;
}
return 0;
}
结果:
1
1
1 1
111111111111
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1 1
1 1 1
1 1111
11
1 1
1 1
1 1 1 1
1111111 111111
1 1 1 1
1 11 1
1 1 1
1 1 1 1
111111 11 1
1 1 1 1
1 1 1
1 1 1
1 1 1
111111 1
1 1 1 1
1
1
1
1
1 1
111111111111
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1 1
1 1 1
1 1111
11
1
1 1
1
11 1
11
1 1 1
1111111
1 1
1 1 1
1 1
1 1
111 1
1 1 1
1 1 1
1 1 1
1 1 1
1 1 111
1 1 1
1
11
1
1
111111111111111
1
1 1
11111111
1 1
1 1
1 1
1 1
1 1
1 1
1 1 1
1 1
1 1
1 1 1 1
11111 111111
1 1 1 1
1 1 1
1
11111111111
1
111111111111111
1
1 1
11111111111
1 1
1 1
1 1
1
1
11111111111
1
1
1
1 1
111111111111111
1
1
1
1
1
1
1
1 1
1
1
1
1111111
1 1
11 1
1 1 11
1 1 1
1 1
1
11 1
11
111 1111111
1 1
11 1
1 1 1
1 111
1
111
111
1
1
1
1 1 1
1 1 1
1 1 11
1 1 1
1 1 1
1 1 1
1 1
1 1
1
1
1
11
111
1111111
11 11
11 11
111 11
111
111
11
1
11
1
1111
11
1
答案:
#include <iostream>
#include <cmath>
#include <cstdio>
using namespace std;
int main()
{
printf("%.0f", pow(9, 9));
return 0;
}