NJU 1010 Air
思路:把那张图打表(吐血...),然后就按照规则输出就行。
AC代码
#include <cstdio> #include <cmath> #include <cctype> #include <algorithm> #include <cstring> #include <utility> #include <string> #include <iostream> #include <map> #include <set> #include <vector> #include <queue> #include <stack> using namespace std; #pragma comment(linker, "/STACK:1024000000,1024000000") #define eps 1e-10 #define inf 0x3f3f3f3f #define PI pair<int, int> typedef long long LL; const int maxn = 50 + 5; string a[maxn]; void init() { for(int i = 0; i <= 35; ++i) { if(i == 0) a[i] = ".-"; else if(i == 1) a[i] = "-..."; else if(i == 2) a[i] = "-.-."; else if(i == 3) a[i] = "-.."; else if(i == 4) a[i] = "."; else if(i == 5) a[i] = "..-."; else if(i == 6) a[i] = "--."; else if(i == 7) a[i] = "...."; else if(i == 8) a[i] = ".."; else if(i == 9) a[i] = ".---"; else if(i == 10) a[i] = "-.-"; else if(i == 11) a[i] = ".-.."; else if(i == 12) a[i] = "--"; else if(i == 13) a[i] = "-."; else if(i == 14) a[i] = "---"; else if(i == 15) a[i] = ".--."; else if(i == 16) a[i] = "--.-"; else if(i == 17) a[i] = ".-."; else if(i == 18) a[i] = "..."; else if(i == 19) a[i] = "-"; else if(i == 20) a[i] = "..-"; else if(i == 21) a[i] = "...-"; else if(i == 22) a[i] = ".--"; else if(i == 23) a[i] = "-..-"; else if(i == 24) a[i] = "-.--"; else if(i == 25) a[i] = "--.."; else if(i == 26) a[i] = "-----"; else if(i == 27) a[i] = ".----"; else if(i == 28) a[i] = "..---"; else if(i == 29) a[i] = "...--"; else if(i == 30) a[i] = "....-"; else if(i == 31) a[i] = "....."; else if(i == 32) a[i] = "-...."; else if(i == 33) a[i] = "--..."; else if(i == 34) a[i] = "---.."; else if(i == 35) a[i] = "----."; } for(int i = 0; i <= 35; ++i) { string s = a[i]; a[i].clear(); for(int j = 0; j < s.size(); ++j) { if(s[j] == '.') a[i].push_back('='); else for(int k = 0; k < 3; ++k) a[i].push_back('='); if(j < s.size()-1) a[i].push_back('.'); } } } int main() { init(); int T, n, kase = 1; char s[25]; scanf("%d", &T); while(T--) { printf("Case #%d: ", kase++); scanf("%d", &n); for(int i = 0; i < n; ++i) { scanf("%s", s); for(int j = 0; j < strlen(s); ++j) { s[j] = toupper(s[j]); if(s[j] >= 'A' && s[j] <= 'Z') { cout << a[s[j]-'A']; } else cout << a[s[j]-'0'+26]; if(j != strlen(s)-1) printf("..."); } if(i != n-1) printf("......."); } printf("\n"); } return 0; }
如有不当之处欢迎指出!
NJU 1010 Air的更多相关文章
- poj——1422 Air Raid
Air Raid Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 8577 Accepted: 5127 Descript ...
- HDU 4756 Install Air Conditioning(次小生成树)
题目大意:给你n个点然后让你求出去掉一条边之后所形成的最小生成树. 比較基础的次小生成树吧. ..先prime一遍求出最小生成树.在dfs求出次小生成树. Install Air Conditioni ...
- BZOJ 1010: [HNOI2008]玩具装箱toy [DP 斜率优化]
1010: [HNOI2008]玩具装箱toy Time Limit: 1 Sec Memory Limit: 162 MBSubmit: 9812 Solved: 3978[Submit][St ...
- Entity Framework 6 Recipes 2nd Edition(10-10)译 - > 为TPH继承的插入、更新、删除操作映射到存储过程
10-10. 为TPH继承的插入.更新.删除操作映射到存储过程 问题 TPH继承模型,想把它的插入.修改.删除操作映射到存储过程 Solution 假设数据库有一个描述不同种类的产品表(Product ...
- ERROR 1010 (HY000): Error dropping database (can't rmdir './test/', errno: 17)
在删除数据库的时候报标题所示错误 mysql> drop database test; ERROR (HY000): Error dropping database (can't rmdir ' ...
- 解决adobe air sdk打包 apk后自动在包名前面加上air. (有个点)前缀的问题
早就找到了这个方法,但是一直忙没心思写博客. 默认情况下,所有 AIR Android 应用程序的包名称都带 air 前缀.若不想使用此默认行为,可将计算机环境变量 AIR_NOANDROIDFLAI ...
- adobe air类app 接入腾讯开放平台移动游戏使用带tencent包名前缀的问题
作者:Panda Fang 出处:http://www.cnblogs.com/lonkiss/p/4209159.html 原创文章,转载请注明作者和出处,未经允许不可用于商业营利活动 ------ ...
- Adobe AIR 中为不同尺寸和分辨率屏幕适配
在 Adobe AIR 中为不同屏幕尺寸的多种设备提供支持 http://www.adobe.com/cn/devnet/air/articles/multiple-screen-sizes.html ...
- Ural 1010. Discrete Function
1010. Discrete Function Time limit: 1.0 secondMemory limit: 64 MB There is a discrete function. It i ...
随机推荐
- U盘安装CentOS 7问题解决
1 使用U盘安装最新版Centos时报错(CentOS-7-x86_64-DVD-1503-01): 错误提示:"Warning:could not boot;Warning: /dev/r ...
- getRequestDispatcher()和response.sendRedirect()
request.getRequestDispatcher()是请求转发,前后页面共享一个request response.sendRedirect()是重新定向,前后页面不是一个request.
- 安装node.js和npm
转载自https://www.liaoxuefeng.com/wiki/001434446689867b27157e896e74d51a89c25cc8b43bdb3000/0014345014184 ...
- shell参数传递
应用实例: #!/bin/bash #运行:bash para_tran.bash text1.txt text2.txt #"set $1"设置存储传入的第一参数 #" ...
- left join on/right join on/inner join on/full join on连接
现在有两张表,第一张表是用户表,第二张表是订单表.情况是这样的,在我这张用户表里用户很多,但是真正下单的人却不多,而且,每一个用户可以有多个订单.然后领导喊话了,小王,你给我查下,现在咱们的订单有多少 ...
- ldconfig几个需要注意的地方
1. 往/lib和/usr/lib里面加东西,是不用修改/etc/ld.so.conf的,但是完了之后要调一下ldconfig,不然这个library会找不到 2. 想往上面两个目录以外加东西的时候, ...
- 在高并发、高负载的情况下,如何给表添加字段并设置DEFAULT值?
在高并发.高负载的情况下,如何给表添加字段并设置DEFAULT值? 在Oracle 12c之前,当Oracle表数据量上亿时,对表执行“ALTER TABLE XXX ADD COLUMN_XX VA ...
- Kafka Consumer
Push VS Pull An initial question we considered is whether consumers should pull data from brokers or ...
- sql的升阶
前言:基本数据库操作根本无法满足实际的需要,需要引入更多的操作. 触发器-隐式的,主动的,更新数据表中的信息.带有inserted和deleted两个临时表,代表新操作和旧操作. 它是一种特殊的存储过 ...
- 阶段小项目1:循环间隔1秒lcd显示红绿蓝
#include<stdlib.h>#include<stdio.h>#include<string.h>#include<error.h>#inclu ...