博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
URAL 1780 G - Gray Code 找规律
阅读量:6137 次
发布时间:2019-06-21

本文共 3680 字,大约阅读时间需要 12 分钟。

G - Gray Code

Time Limit: 20 Sec

Memory Limit: 256 MB

题目连接

http://acm.hust.edu.cn/vjudge/contest/view.action?cid=87643#problem/G

Description

Denis, Vanya and Fedya gathered at their first team training. Fedya told them that he knew the algorithm for constructing a 
Gray code.
  1. Create a 2-bit list: {0, 1}.
  2. Reflect this list and concatenate it with the original list: {0, 1, 1, 0}.
  3. Prefix old entries with 0, and prefix new entries with 1: {00, 01, 11, 10}.
  4. Repeat steps 2 and 3 until the length of all elements is equal to n.
The number 
n is a 
length of a Gray code. For example, the code of length 3 is: {000, 001, 011, 010, 110, 111, 101, 100}.
Denis ran the Fedya's algorithm and obtained a binary number 
x at position 
k (positions are numbered starting from zero). Vanya wrote down the numbers 
k and 
x in binary system. This story happened many years ago and now you hold the paper sheet with these numbers in your hands. Unfortunately, some digits are unreadable now. Could you determine the values of these digits using the readable digits?

Input

The first line contains a number k written in the binary system. Unreadable digits are denoted with symbol “?”. The second line contains a number x in the same format. The lengths of these numbers are equal and don't exceed 10 5. The numbers may contain leading zeroes.

Output

If there is a unique way to restore the numbers k and x, output them, replacing the symbols “?” with “0” or “1”. If there are multiple ways to restore them, output “Ambiguity”. If Denis or Vanya certainly made a mistake in these numbers, output “Impossible”.

Sample Input

0?1

0?0

Sample Output

011

010

HINT

 

题意

题目给了一种序列的构造方式

然后给你一个k,判断第k个数是不是说给的x

题解

找规律题,注意翻转= =

代码:

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef unsigned char byte;#define pb push_back#define input_fast std::ios::sync_with_stdio(false);std::cin.tie(0)#define local freopen("in.txt","r",stdin)#define pi acos(-1)const char * fail = "Impossible";const char * more = "Ambiguity";using namespace std;const int maxn = 1e5 + 500;int dp[maxn][2];char s1[maxn] , s2[maxn];int main(int argc,char *argv[]){ scanf("%s%s",s1+1,s2+1); int Length = strlen(s1+1); s1[0] = '0'; for(int i = Length ; i > 0 ; -- i) { if (s2[i] == '0') { //同号 if (s1[i] == '0' && s1[i-1] == '0') continue; if (s1[i] == '0' && s1[i-1] == '1') { printf("%s\n",fail); return 0; } if(s1[i] == '0' && s1[i-1] == '?') { s1[i-1] = '0'; continue; } if (s1[i] == '1' && s1[i-1] == '0') { printf("%s\n",fail); return 0; } if (s1[i] == '1' && s1[i-1] == '1') continue; if (s1[i] == '1' && s1[i-1] == '?') { s1[i-1] = '1'; continue; } if (s1[i] == '?' && s1[i-1] == '0') { s1[i] = '0'; continue; } if (s1[i] == '?' && s1[i-1] == '1') { s1[i] = '1'; continue; } if (s1[i] == '?' && s1[i-1] == '?') continue; } if (s2[i] == '1') { //异号 if (s1[i] == '0' && s1[i-1] == '1') continue; if (s1[i] == '0' && s1[i-1] == '0') { printf("%s\n",fail); return 0; } if(s1[i] == '0' && s1[i-1] == '?') { s1[i-1] = '1'; continue; } if (s1[i] == '1' && s1[i-1] == '0') continue; if (s1[i] == '1' && s1[i-1] == '1') { printf("%s\n",fail); return 0; } if(s1[i] == '1' && s1[i-1] == '?') { s1[i-1] = '0'; continue; } if(s1[i] == '?' && s1[i-1] == '0') { s1[i] = '1'; continue; } if(s1[i] == '?' && s1[i-1] == '1') { s1[i] = '0'; continue; } if(s1[i] == '?' && s1[i-1] == '?') continue; } } for(int i=1;i<=Length;i++) if(s1[i]=='?') { if(s2[i]!='?') { if(s2[i]=='0') s1[i]=s1[i-1];else s1[i]='0'+1-(s1[i-1]-'0'); continue; } printf("%s\n",more); return 0; } for(int i=0;i

 

转载地址:http://etkya.baihongyu.com/

你可能感兴趣的文章
dubbo
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
高利率时代的结局,任重道远,前途叵测
查看>>
phpcms v9栏目列表调用每一篇文章内容方法
查看>>
python 自定义信号处理器
查看>>
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>
word2010中去掉红色波浪线的方法
查看>>
fabric上下文管理器(context mangers)
查看>>
JQuery-EasyUI Datagrid数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)
查看>>
并发和并行的区别
查看>>
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>
初识中间件之消息队列
查看>>