ZOJ 3542 2011大连现场赛D题(简单模拟)
Hexadecimal View
Time Limit: 2 Seconds Memory Limit: 65536 KB
Hexadecimal is very important and useful for computer programmers. You are requested to provide a hexadecimal view for given data. The hexadecimal view is made up of one or more rows. Every row except the last one represents 16 characters. Each row consists of three columns separated by a space:
- addr: the 4-digit hexadecimal beginning address of this row.
- dump: the hexadecimal representation of this row, separating every two characters by a whitespace. If there are less than 16 characters in the last row, pad it with spaces.
- text: the ASCII translation of this row, with uppercase characters converted to lowercase and lowercase characters converted to uppercase.
Use lowercase for the letter digits. See sample for more details.
Input
There are multiple test cases. Each line is a test case. The line is made up of no less than 1 and no more than 4096 printable characters including spaces.
Output
For each test case, output its hexadecimal view. Do not output any extra spaces after the last character of text.
Sample Input
Hex Dump
#include <cstdio>
printf("Hello, World!\n");
main = do getLine >>= print . sum . map read . words
Sample Output
0000: 4865 7820 4475 6d70 hEX dUMP
0000: 2369 6e63 6c75 6465 203c 6373 7464 696f #INCLUDE <CSTDIO
0010: 3e >
0000: 7072 696e 7466 2822 4865 6c6c 6f2c 2057 PRINTF("hELLO, w
0010: 6f72 6c64 215c 6e22 293b ORLD!\N");
0000: 6d61 696e 203d 2064 6f20 6765 744c 696e MAIN = DO GETlIN
0010: 6520 3e3e 3d20 7072 696e 7420 2e20 7375 E >>= PRINT . SU
0020: 6d20 2e20 6d61 7020 7265 6164 202e 2077 M . MAP READ . W
0030: 6f72 6473 ORDS
题目大意:
这个题目在看了A题觉得太复杂了,就开始看这个了。感觉应该是个比较简单的模拟,但是题目挂在HDU上面有问题。
0000: 4865 7820 4475 6d70 hEX dUMP
0000: 2369 6e63 6c75 6465 203c 6373 7464 696f #INCLUDE <CSTDIO
0010: 3e >
0000: 7072 696e 7466 2822 4865 6c6c 6f2c 2057 PRINTF("hELLO, w
0010: 6f72 6c64 215c 6e22 293b ORLD!\N");
0000: 6d61 696e 203d 2064 6f20 6765 744c 696e MAIN = DO GETlIN
0010: 6520 3e3e 3d20 7072 696e 7420 2e20 7375 E >>= PRINT . SU
0020: 6d20 2e20 6d61 7020 7265 6164 202e 2077 M . MAP READ . W
0030: 6f72 6473 ORDS
这是比赛时候的输出,当时看左简括号表示有点不解,其他的都想地差不多了。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <string>
#include <map>
#include <stack>
#include <vector>
#include <set>
#include <queue>
#define INF 0x3f3f3f3f
#define maxn 105
using namespace std;
char a[5000]; //原串
char b[5]; //最前面的地址
int len,t1;
char tex[20]; //最后面的大小写转换
char dum[3]; //中间的字母转换成16进制的 void addr(int x) //最前面的地址
{
int i,p;
p=0;
int t[5];
memset(t,0,sizeof(t));
while(x)
{
t[p++]=x%16;
x/=16;
}
for(i=0;i<=2;i++)
{
if(t[2-i]<10)
b[i]=t[2-i]+'0';
else
b[i]=t[2-i]-10+'a';
}
/*for(i=2;i>=0;i--)
cout<<t[i]<<" ";
cout<<endl;*/
} void dump(char x) //中间的字母转换成16进制的
{
int i,p;
p=0;
int t[5];
memset(t,0,sizeof(t));
int l=int(x);
while(l)
{
t[p++]=l%16;
l/=16;
}
for(i=0;i<=1;i++)
{
if(t[1-i]<10)
dum[i]=t[1-i]+'0';
else
dum[i]=t[1-i]-10+'a';
}
} void text(char x) //最后面的大小写转换
{
/*if(x=='<') //坑
{
tex[t1++]='&';
tex[t1++]='l';
tex[t1++]='t';
tex[t1++]=';';
}
else*/
if(x>='a'&&x<='z')
{
tex[t1++]=x-32;
}
else if(x>='A'&&x<='Z')
tex[t1++]=x+32;
else
tex[t1++]=x;
} int main()
{
int i,pp,j;
while(gets(a))
{
len=strlen(a);
pp=len/16;
b[3]='0',b[4]='\0'; //地址最后一位无效直接为0
for(i=0;i<pp;i++)
{
addr(i);
cout<<b<<": "; //最前面的地址
t1=0;
for(j=i*16;j<i*16+16;j++)
{
dump(a[j]);
text(a[j]);
cout<<dum[0]<<dum[1];
if(j&1) cout<<" "; //每两位一个空格
}
tex[t1]='\0';
cout<<tex<<endl; //大小写转换
} t1=0;
if(len>pp*16) //开始这个地方写的>=,感谢吉吉debug
{
addr(i);
cout<<b<<": ";
for(j=i*16;j<len;j++)
{
dump(a[j]);
text(a[j]);
cout<<dum[0]<<dum[1];
if(j&1) cout<<" ";
}
tex[t1]='\0';
for(j=len;j<i*16+16;j++)
{
cout<<" "; //补空格
if(j&1) cout<<" ";
}
cout<<tex<<endl;
}
} /*int len=4096;
addr(len);
cout<<b<<endl;*/
return 0;
} //30ms 192KB
ZOJ 3542 2011大连现场赛D题(简单模拟)的更多相关文章
- HDU 5120 A Curious Matt(2014北京赛区现场赛A题 简单模拟)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5112 解题报告:扫一遍 #include<cstdio> #include<cstr ...
- zoj 3820(2014牡丹江现场赛B题)
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5374 思路:题目的意思是求树上的两点,使得树上其余的点到其中一个点的 ...
- zoj 3827(2014牡丹江现场赛 I题 )
套公式 Sample Input 33 bit25 25 50 //百分数7 nat1 2 4 8 16 32 3710 dit10 10 10 10 10 10 10 10 10 10Sample ...
- zoj 3819(2014牡丹江现场赛 A题 )
题意:给出A班和B班的学生成绩,如果bob(A班的)在B班的话,两个班级的平均分都会涨.求bob成绩可能的最大,最小值. A班成绩平均值(不含BOB)>A班成绩平均值(含BOB) &&a ...
- HDU 4119Isabella's Message2011成都现场赛I题(字符串模拟)
Isabella's Message Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Other ...
- 2013杭州现场赛B题-Rabbit Kingdom
杭州现场赛的题.BFS+DFS #include <iostream> #include<cstdio> #include<cstring> #define inf ...
- Gym101981D - 2018ACM-ICPC南京现场赛D题 Country Meow
2018ACM-ICPC南京现场赛D题-Country Meow Problem D. Country Meow Input file: standard input Output file: sta ...
- HDU 4800/zoj 3735 Josephina and RPG 2013 长沙现场赛J题
第一年参加现场赛,比赛的时候就A了这一道,基本全场都A的签到题竟然A不出来,结果题目重现的时候1A,好受打击 ORZ..... 题目链接:http://acm.hdu.edu.cn/showprobl ...
- HDU 4816 Bathysphere (2013长春现场赛D题)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4816 2013长春区域赛的D题. 很简单的几何题,就是给了一条折线. 然后一个矩形窗去截取一部分,求最 ...
随机推荐
- ASP.NET利用byte检测上传图片安全
) { //这里只测试上传第一张图片file[0] HttpPostedFile file0 = Request.Files[]; //转换成byte,读取图片MIME类型 Stream stream ...
- js中使用jstl中得到的值
jstl的标签会转化为服务器端的代码执行,而js代码则在客户端执行. 要在js中使用jstl并不是直接将jstl的value赋值给一个js的变量,而是要在jstl的value上加上&qu ...
- 基于visual Studio2013解决面试题之1403插入排序
题目
- UPC 2959: Caoshen like math 这就是个水题
http://acm.upc.edu.cn/problem.php?id=2959 这就是个水题,之所以要写这个题是感觉很有纪念意义 用力看就是盲……23333333333333333 这个题就是最小 ...
- 调用ShellExecute所须要头文件
调用ShellExecute所须要头文件 #include "windows.h " #include "shellapi.h "
- Hadoop MapReduce编程的一些个人理解
首先要实现mapreduce就要重写两个函数,一个是map 还有一个是reduce map(key ,value) map函数有两个參数,一个是key,一个是value 假设你的输入类型是TextIn ...
- 【视频】零基础学Android开发:蓝牙聊天室APP(四)
零基础学Android开发:蓝牙聊天室APP第四讲 4.1 ListView控件的使用 4.2 BaseAdapter具体解释 4.3 ListView分布与滚动事件 4.4 ListView事件监听 ...
- C# webBrowser操作 javascript
using System; using System.Windows.Forms; namespace Demo { public partial class Form1 : Form { publi ...
- HDU ACM 1081 To The Max->最大子矩阵
分析:利用求最大子段和的思想进行求解. 1.首先累加s[i][j].表示第j列中i从第1行加到第i行的和. 2.对每一列的i1到i2行的和进行计算(0<i1<i2<=n),得出t[k ...
- SQL SERVER之数据查询
本篇主要解说查询语句,全部的演示样例都会依照以下这张表进行. stuID stuName age sex 11090241031 王小虎 21 男 11090241032 王小六 22 男 11 ...