沈阳网络赛I-Lattice's basics in digital electronics【模拟】
- 42.93%
- 1000ms
- 131072K
LATTICE is learning Digital Electronic Technology. He is talented, so he understood all those pieces of knowledge in 10^{-9}10−9 second. In the next 10^{-9}10−9 second, he built a data decoding device that decodes data encoded with his special binary coding rule to meaningful words.
His coding rule is called "prefix code", a type of code system (typically a variable-length code) distinguished by its possession of the "prefix property", which requires that there is no whole code word in the system that is a prefix (initial segment) of any other code word in the system. Note that his code is composed of only 00 and 11.
LATTICE's device only receives data that perfectly matches LATTICE's rules, in other words, people who send message to LATTICE will always obey his coding rule. However, in the process of receiving data, there are errors that cannot avoid, so LATTICE uses parity check to detect error bytes, after every 88-bit data there is 11 bit called parity bit, which should be '0' if there are odd number of '1's in the previous 88 bits and should be '1' if there are even number of '1's. If the parity bit does not meet the fact, then the whole 99 bits (including the parity bit) should be considered as invalid data and ignored. Data without parity bit is also considered as invalid data. Parity bits will be deleted after the parity check.
For example, consider the given data "101010101010101010101010", it should be divided into 33parts:"101010101","010101010" and "101010". For the first part, there are 44 '1's in the first 88 bits, and parity bit is '1', so this part passed the check. For the second part, there are 44 '1's and parity bit is '0', so this part failed the check. For the third part, it has less than 99 bits so it contains no parity bit, so this part also failed the check. The data after parity check is "10101010", which is the first 88 bits of first part.
Data passed the parity check will go into a process that decodes LATTICE's code. The process is described in the following example: consider a situation that, "010" represents 'A' and "1011" represents 'B', if the data after parity check is "01010110101011010010", it can be divided into "010"+"1011"+"010"+"1011"+"010"+"010", which means "ABABAA" . LATTICE's device is so exquisite that it can decode all visible characters in the ASCII table .
LATTICE is famous for his Talk show, some reporters have sneaked into his mansion, they stole the data LATTICE to decode in hexadecimal, the coding rule consists of NN pairs of corresponding relations from a bit string S_iSi to an ASCII code C_iCi, and the message length MM, they want to peek his privacy so they come to you to write a program that decodes messages that LATTICE receives.
Input
The first line an integer T\ (T<35)T (T<35) represents the number of test cases.
Every test case starts with one line containing two integers, M\ (0<M\leq100000)M (0<M≤100000), the number of original characters, and N\ (1\leq N \leq 256)N (1≤N≤256), then NN lines, every line contains an integer C_iCi, and a string S_i(0<|S_i|\leq 10)Si(0<∣Si∣≤10), means that S_iSi represents C_iCi, the ASCII code to a visible character and S_iSi only contains '0'or '1' and there are no two numbers ii and jj that S_iSi is prefix of S_jSj.
Then one line contains data that is going to be received in hexadecimal. (0<|data|<200000)(0<∣data∣<200000).
Output
For each test case, output the decoded message in a new line, the length of the decoded message should be the same with the length of original characters, which means you can stop decoding having outputted MM characters. Input guarantees that it will have no less than MM valid characters and all given ASCII codes represent visible characters.
Hint
Lattice's encoding rule for test case 22:
| ASCII code | character | lattice's code |
|---|---|---|
| 4949 | 11 | 00010001 |
| 5050 | 22 | 0100101001 |
| 5151 | 33 | 011011 |
the device takes this input in hex
1
14DB24722698
input in binary
1
0001 0100 1101 1011 0010 0100 0111 0010 0010 0110 1001 1000
formatted into 66 lines, each line contains 88 data bits and one parity bit
1
00010100 1
2
10110110 0
3
10010001 1
4
10010001 0
5
01101001 1
6
000
parity check of the third line and the last line failed, so ignore those two lines.parity bits should also be ignored.
1
00010100
2
10110110
3
10010001
4
01101001
arrange those bits by the rules informed
1
0001 01001 011 011 01001 0001 011 01001
output the result
1
12332132
样例输入复制
2
15 9
32 0100
33 11
100 1011
101 0110
104 1010
108 00
111 100
114 0111
119 0101
A6Fd021171c562Fde1
8 3
49 0001
50 01001
51 011
14DB24722698
样例输出复制
hello world!!!!
12332132
题目来源
题意:
要你输出一个长度为m的字符串 给的是一定的编码 需要按照规则进行解码
给定n个字符的编码形式 保证是二进制的哈弗曼编码
每8位有一位偶校验位 如果错误这9位都不要 不够9位的也都舍去 如果正确校验位不要
输入一串十六进制的编码
思路:
模拟 分成几个步骤
用map存编码和字符的对应
首先把输入的十六进制编码转成二进制的形式
第二步 进行偶校验 得到有效的编码
第三步 找到编码对应的字符 输出
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<stack>
#include<queue>
#include<map>
#include<vector>
#include<cmath>
#include<cstring>
#include<set>
//#include<bits/stdc++.h>
#define inf 0x7f7f7f7f7f7f7f7f
using namespace std;
typedef long long LL;
const int maxn = 200005;
int t, m, n, len, checklen;
char hexdata[maxn], bindata[maxn * 4], findata[maxn * 4];
map<string, char>mp;
void init()
{
mp.clear();
memset(hexdata, 0, sizeof(hexdata));
memset(bindata, 0, sizeof(bindata));
memset(findata, 0, sizeof(findata));
len = 0;
checklen = 0;
}
void hextobin()
{
for (int i = 0; i < len; i++) {
int tmp;
if (hexdata[i] == 'A' || hexdata[i] == 'a') {
tmp = 10;
}
else if (hexdata[i] == 'B' || hexdata[i] == 'b') {
tmp = 11;
}
else if (hexdata[i] == 'C' || hexdata[i] == 'c') {
tmp = 12;
}
else if (hexdata[i] == 'D' || hexdata[i] == 'd') {
tmp = 13;
}
else if (hexdata[i] == 'E' || hexdata[i] == 'e') {
tmp = 14;
}
else if (hexdata[i] == 'F' || hexdata[i] == 'f') {
tmp = 15;
}
else {
tmp = hexdata[i] - '0';
}
for (int j = 3; j >= 0; j--) {
bindata[i * 4 + j] = (tmp & 1) + '0';
tmp >>= 1;
}
//cout<<bindata<<endl;
}
//printf("%s\n", bindata);
}
void check()
{
int cnt = 0, tmplen = 0;
checklen = 0;
char tmp[10];
for (int i = 0; i < len * 4; i++) {
if ((i + 1) % 9 == 0) {
if ((cnt % 2) ^ (bindata[i] - '0')) {
for (int i = 0; i < tmplen; i++) {
findata[checklen++] = tmp[i];
}
}
cnt = 0;
tmplen = 0;
memset(tmp, 0, sizeof(tmp));
}
else {
tmp[tmplen++] = bindata[i];
if (bindata[i] == '1') {
cnt++;
}
}
}
//printf("%s\n", findata);
}
void solve()
{
string tmp = "";
int tmpcnt = 0;
for (int i = 0; i < checklen; i++) {
tmp += findata[i];
if (mp.find(tmp) == mp.end()) {
continue;
}
else {
printf("%c", mp[tmp]);
//cout<<tmp<<endl;
tmpcnt++;
if(tmpcnt == m){
break;
}
tmp = "";
}
}
printf("\n");
}
int main()
{
cin >> t;
while (t--) {
init();
scanf("%d%d", &m, &n);
for (int i = 0; i < n; i++) {
int d;
scanf("%d ", &d);
string s;
cin >> s;
mp[s] = (char)(d);
}
cin >> hexdata;
len = strlen(hexdata);
hextobin();
check();
solve();
}
return 0;
}
沈阳网络赛I-Lattice's basics in digital electronics【模拟】的更多相关文章
- ACM-ICPC 2018 沈阳赛区网络预赛 I Lattice's basics in digital electronics(模拟)
https://nanti.jisuanke.com/t/31450 题意 给出一个映射(左为ascll值),然后给出一个16进制的数,要求先将16进制转化为2进制然后每9位判断,若前8位有奇数个1且 ...
- ACM-ICPC 2018 沈阳赛区网络预赛 I. Lattice's basics in digital electronics 阅读题加模拟题
题意:https://nanti.jisuanke.com/t/31450 题解:题目很长的模拟,有点uva的感觉 分成四步 part1 16进制转为二进制string 用bitset的to_stri ...
- ACM-ICPC2018沈阳网络赛 Lattice's basics in digital electronics(模拟)
Lattice's basics in digital electronics 44.08% 1000ms 131072K LATTICE is learning Digital Electron ...
- upc组队赛15 Lattice's basics in digital electronics【模拟】
Lattice's basics in digital electronics 题目链接 题目描述 LATTICE is learning Digital Electronic Technology. ...
- 【ACM-ICPC 2018 沈阳赛区网络预赛 I】Lattice's basics in digital electronics
[链接] 我是链接,点我呀:) [题意] [题解] 每个单词的前缀都不同. 不能更明示了... 裸的字典树. 模拟一下.输出一下就ojbk了. [代码] #include <bits/stdc+ ...
- ACM-ICPC 2018 沈阳赛区网络预赛 I 题 Lattice's basics in digital electronics
原题链接:https://nanti.jisuanke.com/t/31450 附上队友代码:(感谢队友带飞) #include <bits/stdc++.h> using namespa ...
- 2018 ICPC 沈阳网络赛
2018 ICPC 沈阳网络赛 Call of Accepted 题目描述:求一个算式的最大值与最小值. solution 按普通算式计算方法做,只不过要同时记住最大值和最小值而已. Convex H ...
- 沈阳网络赛 F - 上下界网络流
"Oh, There is a bipartite graph.""Make it Fantastic." X wants to check whether a ...
- 沈阳网络赛J-Ka Chang【分块】【树状数组】【dfs序】
Given a rooted tree ( the root is node 11 ) of NN nodes. Initially, each node has zero point. Then, ...
随机推荐
- 【转】MFC 字体LOGFONT
Windows的字体LOGFONT LOGFONT是Windows内部字体的逻辑结构,主要用于设置字体格式,其定义如下:typedef struct tagLOGFONTA{ LONG ...
- python中时间操作总结
一.time 二.datetime 1.获取当前系统时间 datenow = datetime.datetime.now() 2.将datetime格式的时间转换成str datenow = date ...
- bt开源的客户端——xbt client
我部署好了bt tracker, 用bitcomet可以下载. 但xbt client下载不来.torrent资源.
- java动态代码的实现以及Class的卸载 (转至http://dustin.iteye.com/blog/46393)
JavaWorld一篇题为 Add dynamic code to your application 的文章介绍了如何使用动态代理技术使普通的java源代码具有像jsp一样的动态编译效果,十分有趣. ...
- eclipse集成Python开发环境
话说近期听说 Python 非常牛, 非常强大, 至于到底有多强大, 俺作为一枚菜鸟也就不好发表太多评价. 言归正传, 本文教你在eclipse中安装 Python 插件, 以下我们就跟着步骤一起做吧 ...
- CentOS定位、查找文件的命令
定位.查找文件的命令 命令 功能 命令 功能 which 从path中找出文件的位置 find 找出所有符合要求的文件 whereis 找出特定程序的路径 locate 从索引中找出文件位置 9.1 ...
- Loadrunner进行md5加密方法
本文主要介绍使用Loadrunner进行字符串md5加密的方法. 使用Loadrunner进行md5比较简单,首先是加载md5.h头文件,后使用头文件中的加密函数即可. 1. md5.h头文件内容如下 ...
- bootstrap中如何使input中的小图标获得点击事件
bootstrap中,放入input中的小图标是不能点击的. 在表单中经常遇见密码旁边的眼睛图标点击后,可使密码可见. 要使小图标获得点击事件,可在小图标上覆盖一个跟小图标一样大的透明层,然后给透明层 ...
- MVC4 Controller 与 WebApi 的 Session 传值问
在MVC以后,Session方式可能已经不太常用,但偶尔还是会用到,比如页面验证码之类的.例如登录页面使用的验证码通过Controller提供一个View来实现,可以使用Session来存储这个值.但 ...
- Facebook开源技术识别网购评论
1.自然语言处理2.情感分析3.监督学习模型4.词向量 5.fasttext 汉藏语系,是语言系属分类(Language family)的一种,分为汉语族和藏缅语族,是用汉语和藏语的名称概括与其有亲属 ...