博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【信息学奥赛一本通】第三部分_队列 ex2_3produce 产生数
阅读量:5097 次
发布时间:2019-06-13

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

  给出一个整数n(n<=2000)(代码可适用n<=10^31)和k个变换规则(k<=15)。

  规则:1、1个数字可以变换成另1个数字;

     2、规则中右边的数字不能为零。

  

  BFS

1 #include 
2 #include
3 #define maxn 1000 4 5 char num[33]; 6 int len,q[maxn],Visited[11]; 7 long long ans = 1; 8 9 int main (){10 // freopen ("produce.in","r",stdin);11 // freopen ("produce.out","w",stdout); 12 13 int i,j,k;14 int K,x[16],y[16];15 16 scanf ("%s%d",num,&K);17 for (i = 1;i<=K;i++)18 scanf ("%d%d",x+i,y+i);19 len = strlen (num); 20 21 int head = 0,tail = 0,temp;22 23 for (j = 0;j

 

转载于:https://www.cnblogs.com/Aeolus/p/5195931.html

你可能感兴趣的文章
Unity之fragment shader中如何获得视口空间中的坐标
查看>>
支持向量机——内核
查看>>
MFC注册热键
查看>>
万能的SQLHelper帮助类
查看>>
三种方式创建Angular的自定义服务
查看>>
如何在 Terminal 内可以“用惯用的编辑器”快速打开“目前正在做”的专案(project)呢?...
查看>>
uboot分析:uboot的启动过程分析
查看>>
tmux的简单快捷键
查看>>
springboot笔记04——读取配置文件+使用slf4j日志
查看>>
[Swift]LeetCode653. 两数之和 IV - 输入 BST | Two Sum IV - Input is a BST
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
微信小程序的wxml文件和wxss文件在webstrom的支持
查看>>
SaltStack快速部署及测试
查看>>
[Angular] Architectures for Huge Angular Based Enterprise
查看>>
[Git] set-upstream
查看>>
[AngularJS] Best Practise - Minification and annotation
查看>>
[AngularJS] Lazy Loading modules with ui-router and ocLazyLoad
查看>>
关于移动端rem适配
查看>>
.Net Com口通信编程例子
查看>>
js 编程笔记 【无名函数】
查看>>