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

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

简单题

ContractedBlock.gif
ExpandedBlockStart.gif
View Code
#include 
#include
#include
#include
using namespace std; #define maxl 1005 #define maxn 30 int f[maxn], g[maxn]; char a[maxl], b[maxl]; void make(char *st, int f[]) {
int len = strlen(st); for (int i = 0; i < len; i++) f[st[i] - 'a']++; } void work() {
for (int i = 0; i < 26; i++) {
int x = min(f[i], g[i]); for (int j = 0; j < x; j++) putchar(i + 'a'); } putchar('\n'); } int main() {
//freopen("t.txt", "r", stdin); while (gets(a)) {
gets(b); memset(f, 0, sizeof(f)); memset(g, 0, sizeof(g)); make(a, f); make(b, g); work(); } return 0; }

转载于:https://www.cnblogs.com/rainydays/archive/2011/10/03/2198613.html

你可能感兴趣的文章
nib和xib的区别
查看>>
== 和 is 的区别
查看>>
Selenium2Library+ride学习笔记
查看>>
OSPF RFC2740
查看>>
OBJECT_ID()的使用方法
查看>>
'800a0005' 图片上传出现写入文件失败的错误 -- 修改pload_5xsoft.inc
查看>>
[Egret][文档]遮罩
查看>>
sql的split()函数
查看>>
建造者模式
查看>>
hdu 1166 敌兵布阵 (线段树)
查看>>
递归分解因数
查看>>
突然想到了王自如
查看>>
JAVA关键字
查看>>
Adding Flexcan driver support on Kernel
查看>>
ElastciSearch简单总结(笔记)
查看>>
14-angular.isDefined
查看>>
oracle高效分页查询总结
查看>>
Dubbo简单介绍及实例
查看>>
Apple Swift编程语言新手教程
查看>>
linux服务器加入windows域时报错Ticket expired
查看>>