http://bestcoder.hdu.edu.cn/

Problem A

题目链接:

http://bestcoder.hdu.edu.cn/contests/contest_showproblem.php?cid=690&pid=1001

http://acm.hdu.edu.cn/showproblem.php?pid=5685

题目分析:

因为是中文题目,便不再赘述

代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std; const int MAXN = 1e5 + 5;
int H[MAXN];
char Hstr[MAXN];
int N, l, r;
const int mods = 9973;
typedef long long LL; LL mod_pow(LL x, LL n, LL mod) {
LL res = 1;
while(n > 0) {
if(n & 1) res = res * x % mod;
x = x * x % mod;
n >>= 1;
}
return res;
} int main(){
while(~scanf("%d", &N)){
scanf("%s", Hstr);
int len = strlen(Hstr);
H[0] = 1;
for(int i = 1;i <= len;i ++){
H[i] = H[i - 1] * (Hstr[i - 1] - 28) % mods;
}
while(N --){
scanf("%d%d", &l, &r);
if(l > r) swap(l, r);
printf("%I64d\n", (LL)H[r] * mod_pow(H[l - 1], mods - 2, mods) % mods);
}
}
return 0;
}

Problem B

题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=5686

题目分析:

1      1                                                                 1

2     11   2                                                           2

3      111 21  12                                                  3

4      1111   211  112  121  22                             5

5                                                                          8

所以,很容易推出  F[i] = F[i-1] +  F[i-2]

需要注意的地方是这里必须使用大数加法,不然会报错

代码:

#include <iostream>
#include<string.h>
#include <stdio.h>
using namespace std;
int a[205][205];
int main()
{
memset(a,0,sizeof(a));
a[1][200]=1;a[2][200]=2;
int i,j;
for(i=3;i<=200;i++)
{
for(j=200;j>0;j--)
{
a[i][j]=a[i][j]+a[i-1][j]+a[i-2][j];
if(a[i][j]>9)
{
a[i][j-1]=a[i][j]/10;
a[i][j]=a[i][j]%10;
}
}
}
int n;
while(cin>>n)
{
j=0;
while(a[n][j]==0)j++;
for(;j<=200;j++)
{
cout<<a[n][j];
}
cout<<endl;
}
return 0;
}

Problem C

题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=5687

题目分析:

使用字典树

代码:

#include<cstdio>
#include<cstring>
#include<stdlib.h>
const int N=26;
struct node{
int flag; // 记录该单词出现的次数;
node *next[N];
node(){
flag=0;
memset(next,0,sizeof(next));
}
};
node *p,*pre,*head=new node();
void Insert(char s[])
{
p=head;
int i=0;
while(s[i]){
int id=s[i++]-'a';
if(p->next[id]==NULL) p->next[id]=new node();
p=p->next[id];
p->flag++; // 标记该分支字母出现的个数;
}
//p->flag++; // 标记改单词出现过,并且记录出现的次数;
}
// 返回该单词出现的次数;
int Query(char s[])
{
p=head;
int i=0;
while(s[i]){
int id=s[i++]-'a';
if(p->next[id]==NULL) return 0;
p=p->next[id];
}
return p->flag;
}
// 不能删除,删除会导致TLE,不删除容易出现内存泄漏MLE
int deal(node *T)
{
for(int i=0;i<N;i++){
if(T->next[i]!=NULL)
deal(T->next[i]);
}
free(T);
return 0;
}
// 该单词的计数-cnt;
void Deal(char s[],int cnt)
{
p=head;
int i=0;
while(s[i]){
int id=s[i++]-'a';
p=p->next[id];
p->flag-=cnt;
}
for(int i=0;i<N;i++){
p->next[i]=NULL;
}
//deal(p);
return ;
}
int main()
{
int n;
char s1[35],s2[35];
while(~scanf("%d",&n)){
head=new node();
for(int i=0;i<n;i++){
scanf("%s %s",s1,s2);
if(strcmp(s1,"insert")==0) Insert(s2);
if(strcmp(s1,"search")==0){
if(Query(s2)) printf("Yes\n");
else printf("No\n");
}
if(strcmp(s1,"delete")==0){
int t=Query(s2); // 前缀为s2的单词出现的次数;
if(t)Deal(s2,t);
}
}
//deal(head);
}
return 0;
}

Problem D

题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=5688

题目分析:

使用map容器做

代码:

#include<cstdio>
#include<string>
#include<map>
#include<cstring>
#include<algorithm>
using namespace std;
map<string,int>m;
char s[100]; int main()
{
int n;
scanf("%d",&n);
while(n--)
{
scanf("%s",s);
sort(s,s+strlen(s));
m[s]++;
printf("%d\n",m[s]-1);
}
return 0;
}
anytime you feel the pain.hey,refrain.don't carry the world upon your shoulders
 
分类: ACM

bestcoder.hdu.edu.cn的更多相关文章

  1. HDU 4911 http://acm.hdu.edu.cn/showproblem.php?pid=4911(线段树求逆序对)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4911 解题报告: 给出一个长度为n的序列,然后给出一个k,要你求最多做k次相邻的数字交换后,逆序数最少 ...

  2. KMP(http://acm.hdu.edu.cn/showproblem.php?pid=1711)

    http://acm.hdu.edu.cn/showproblem.php?pid=1711 #include<stdio.h> #include<math.h> #inclu ...

  3. HDU-4632 http://acm.hdu.edu.cn/showproblem.php?pid=4632

    http://acm.hdu.edu.cn/showproblem.php?pid=4632 题意: 一个字符串,有多少个subsequence是回文串. 别人的题解: 用dp[i][j]表示这一段里 ...

  4. 待补 http://acm.hdu.edu.cn/showproblem.php?pid=6602

    http://acm.hdu.edu.cn/showproblem.php?pid=6602 终于能够看懂的题解: https://blog.csdn.net/qq_40871466/article/ ...

  5. HDU-1257 导弹拦截系统 http://acm.hdu.edu.cn/showproblem.php?pid=1257

    Problem Description 某国为了防御敌国的导弹袭击,发展出一种导弹拦截系统.但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意的高度,但是以后每一发炮弹都不能超过前一发的高 ...

  6. BestCoder HDU 5750 Dertouzos

    Dertouzos 题意: 有中文,不说. 题解: 我看了别人的题解,还有个地方没懂, 为什么是 if(d%prime[i]==0) break; ? 代码: #include <bits/st ...

  7. http://acm.hdu.edu.cn/showproblem.php?pid=2579

    #include<stdio.h> #include<string.h> #include<queue> #define N 110 int m, n, k, x1 ...

  8. KMP应用http://acm.hdu.edu.cn/showproblem.php?pid=2594

    riemann与marjorie拼接后riemannmarjorie前缀与后缀公共部分为 rie 长度为 3(即next[l] = next[14]的值,l为拼接后的长度)但:aaaa与aa拼接后aa ...

  9. HDU 2544 最短路 http://acm.hdu.edu.cn/showproblem.php?pid=2544

    //代码: //方法1:Dijkstra's Algorithm #include<stdio.h> #include<math.h> #include<string.h ...

随机推荐

  1. zk set 方法

    [root@wx03 zook]# cat a4.pl use ZooKeeper; use AnyEvent; use AE; use Data::Dumper; my $zk = ZooKeepe ...

  2. JavaScript 中的日期和时间

    前言 本篇的介绍涵盖以下部分: 1. 时间标准指的是什么?UCT和GMT 的概念.关联和区别? 2. 时间表示标准有哪些? 3. JS 中时间的处理 日期时间标准 日期的标准就不多说了 -- 公元纪年 ...

  3. [置顶] 使用红孩儿工具箱完成基于Cocos2d-x的简单游戏动画界面

    [Cocos2d-x相关教程来源于红孩儿的游戏编程之路CSDN博客地址:http://blog.csdn.net/honghaier 红孩儿Cocos2d-X学习园地QQ3群:205100149,47 ...

  4. GREENPLUM简单介绍

    原帖:http://www.itpub.net/thread-1409964-1-1.html 什么是GREENPLUM? 对于非常多IT人来说GREENPLUM是个陌生的名字.简单的说它就是一个与O ...

  5. C# 窗体在线2,8,16进制转换以及,在线更新时间

    class Program { static void Main(string[] args) { //十进制转二进制 Console.WriteLine(, )); //十进制转八进制 Consol ...

  6. Steve Yegge:Google面试秘籍

    我憋了很长时间想写点关于去Google面试的秘籍.不过我总是推迟,因为写出来的东西会让你抓狂.很可能是这样.如果按统计规律来定义"你"的话,这文章很可能让你不爽. 为啥呢?因为啊- ...

  7. ant 具体命令行展示代码

    C:\Users\xutianhao>ant -hant [options] [target [target2 [target3] ...]]Options: -help, -h print t ...

  8. vs2016 创建 vsto excel 文件项目的一个问题

    新工作需要些一个基于Excel开发一个工具,vs的 vsto 功能很好用,封装了基于开发office 开的一些工具.但是在实际使用时,创建项目总是报错,提示打开excel文件失败.项目是需要创建一个e ...

  9. Android项目实战手机安全卫士(01)

    目录 项目结构图 源代码 运行结果 项目结构图 源代码 SplashActivity.java package com.coderdream.mobilesafe.activity; import a ...

  10. 基于mAppWidget实现手绘地图--索引&DEMO

    文章翻译完了,梳理一下,附Demo下载 基于mAppWidget实现手绘地图(一)–简介 基于mAppWidget实现手绘地图(二)–概要 基于mAppWidget实现手绘地图(三)–环境搭建 基于m ...