zoj 3542 Hexadecimal View
大連地区試合のD題、一番水のあれ.
私は50分でこの問題を書き終えて、1 Y、効率はとても低いです><...模擬問題ですね.党が得意なはずです.の
他の問題は見る勇気がなかった...
あまり話さないで、題意がよく理解できて、sampleを見ればいいです...
私はまだ馬鹿に16進数変換を書いた.はい.16進法を直接出力すればいいです.の
私は50分でこの問題を書き終えて、1 Y、効率はとても低いです><...模擬問題ですね.党が得意なはずです.の
他の問題は見る勇気がなかった...
あまり話さないで、題意がよく理解できて、sampleを見ればいいです...
私はまだ馬鹿に16進数変換を書いた.はい.16進法を直接出力すればいいです.の
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <string.h>
#include <string>
#include <algorithm>
#include <iostream>
#define MID(x,y) ( ( x + y ) >> 1 )
#define L(x) ( x << 1 )
#define R(x) ( x << 1 | 1 )
#define FOR(i,s,t) for(int i=(s); i<(t); i++)
#define BUG puts("here!!!")
#define STOP system("pause")
#define file_r(x) freopen(x, "r", stdin)
#define file_w(x) freopen(x, "w", stdout)
using namespace std;
const int MAX = 5000;
char s[MAX];
int main()
{
while( gets(s) )
{
int len = strlen(s);
int cnt = 0;
FOR(i, 0, len)
{
if( i % 16 == 0 )
{
if( i != 0 )
printf("
");
int p = cnt * 16;
printf("%04x:", p);
cnt++;
}
if( i % 2 == 0 )
printf(" ");
printf("%x",s[i]);
if( (i+1) % 16 == 0 )
{
printf(" ");
FOR(k, i-15, i+1)
{
if( isalpha(s[k]) )
if( islower(s[k]) )
s[k] = toupper(s[k]);
else
s[k] = tolower(s[k]);
printf("%c", s[k]);
}
}
}
if( len % 16 )
{
int l = (len % 16)/2 + len % 16 * 2;
if( len % 16 % 2 != 0 )
l++;
int kong = 40 - l;
FOR(i, 0, kong+1)
printf(" ");
int a = len % 16;
FOR(i, len-a, len)
{
if( isalpha(s[i]) )
if( islower(s[i]) )
s[i] = toupper(s[i]);
else
s[i] = tolower(s[i]);
printf("%c", s[i]);
}
}
printf("
");
}
return 0;
}