博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU-1226 超级密码
阅读量:4876 次
发布时间:2019-06-11

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

其实就是一道简单的搜索题。

从小往大+BFS可以保证最少O(n)的复杂度。

#include 
#include
#include
#include
#include
#include
#include
#include
#define rep(i, l, r) for(int i=l; i<=r; i++)#define down(i, l, r) for(int i=l; i>=r; i--)#define maxn 5678#define MAX 1<<30using namespace std;int n, c, m, bn[maxn][509];char s[5];bool b[16];queue
q; void Init(){ rep(i, 0, 15) b[i] = 0; rep(i, 0, maxn-1) bn[i][0] = 0; while (!q.empty()) q.pop();}int main(){ int t; scanf("%d", &t); while (t--) { Init(); scanf("%d%d%d", &n, &c, &m); rep(i, 1, m) { scanf("%s", s); if (s[0] <= '9') b[s[0]-'0'] = 1; else b[s[0]-'A'+10] = 1; } if (n == 0) { if (b[0]) printf("0\n"); else printf("give me the bomb please\n"); continue; } rep(i, 1, 15) if (b[i] && !bn[i%n][0]) { bn[i%n][0] = 1; bn[i%n][1] = i; q.push(i%n); } while (!q.empty() && !bn[0][0]) { int x = q.front(); q.pop(); if (bn[x][0] == 500) continue; rep(i, 0, 15) if (b[i] && !bn[(x*c+i)%n][0]) { int y = (x*c+i)%n; rep(j, 1, bn[x][0]) bn[y][j+1] = bn[x][j]; bn[y][1] = i; bn[y][0] = bn[x][0]+1; q.push(y); } } if (bn[0][0]) { down(i, bn[0][0], 1) if (bn[0][i] <= 9) printf("%c", bn[0][i]+'0'); else printf("%c", bn[0][i]-10+'A'); printf("\n"); } else printf("give me the bomb please\n"); }}
View Code

转载于:https://www.cnblogs.com/NanoApe/p/4311940.html

你可能感兴趣的文章
Android UI线程和非UI线程
查看>>
hdu 2058
查看>>
【10.26校内测试】【状压?DP】【最小生成树?搜索?】
查看>>
单例模式概念
查看>>
使用主密钥和钱包方法加密数据
查看>>
API测试利器Postman简介
查看>>
简单四则运算表达式的java实现(1)
查看>>
django
查看>>
看paper的网址
查看>>
myna代码
查看>>
条款18 让接口容易使用,不易被误用
查看>>
SpringBoot定时任务
查看>>
获取磁盘空间
查看>>
Chap1 引言[The Linux Command Line]
查看>>
NHibernate 知识点整理
查看>>
linux初级学习笔记二:linux操作系统及常用命令,文件的创建与删除和命名规则,命令行展开以及linux中部分目录的作用!(视频序号:02_3)...
查看>>
HTML5 是什么
查看>>
用csc命令行手动编译cs文件
查看>>
hdu 4169 二分匹配最大独立集 ***
查看>>
Xamarin Android项目提示SDK版本太老
查看>>