博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3445
阅读量:6847 次
发布时间:2019-06-26

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

简单题

ContractedBlock.gif
ExpandedBlockStart.gif
View Code
#include
<
iostream
>
#include
<
cstdio
>
#include
<
cstdlib
>
#include
<
cstring
>
using
namespace
std;
string
st[
16
];
int
length[
16
];
char
a[
6000000
];
int
getid(
char
*
a)
{
int
len
=
strlen(a);
for
(
int
i
=
0
; i
<=
15
; i
++
)
if
(len
==
length[i])
return
i;
return
-
1
;
}
int
main()
{
//
freopen("t.txt", "r", stdin);
st[
0
]
=
"
{}
"
;
length[
0
]
=
2
;
for
(
int
i
=
1
; i
<=
15
; i
++
)
{
st[i]
=
"
{
"
+
st[
0
];
for
(
int
j
=
1
; j
<
i; j
++
)
st[i]
+=
"
,
"
+
st[j];
st[i]
+=
"
}
"
;
length[i]
=
st[i].length();
}
int
t;
scanf(
"
%d
"
,
&
t);
while
(t
--
)
{
scanf(
"
%s
"
, a);
int
x
=
getid(a);
scanf(
"
%s
"
, a);
int
y
=
getid(a);
cout
<<
st[x
+
y]
<<
endl;
}
return
0
;
}

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

你可能感兴趣的文章
常见系统故障排查
查看>>
正则验证手机号是否合法
查看>>
《Git权威指南》读书笔记 第四章 git初始化
查看>>
《Head first HTML与CSS 第二版》读书笔记 第九章 盒模型
查看>>
《Python面向对象……》之目录
查看>>
集群入门简析及LB下LVS详解
查看>>
Linux与GPT
查看>>
管理或技术
查看>>
分配到弱属性;对象将在赋值之后释放
查看>>
java作用域public ,private ,protected 及不写时的区别
查看>>
until循环语句
查看>>
Android桌面悬浮窗进阶,QQ手机管家小火箭效果实现
查看>>
提高用户体验方式:饥饿营销
查看>>
Java8中的LocalDateTime工具类
查看>>
Exchange 2013 PowerShell创建自定义对象
查看>>
RAID-10 阵列的创建(软)
查看>>
javaScript的调试(四)
查看>>
nginx不使用正则表达式匹配
查看>>
dell台式机双SATA硬盘开机提示NO boot device available- Strike F1 to retryboot .F2
查看>>
linux下mysql的卸载、安装全过程
查看>>