本月博客排行
-
第1名
龙儿筝 -
第2名
zysnba -
第3名
johnsmith9th - wy_19921005
- sgqt
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- javashop
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- ranbuijj
- arpenker
- tanling8334
- kaizi1992
- sichunli_030
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- lemonhandsome
- luxurioust
- Xeden
- lzyfn123
- forestqqqq
- zhanjia
- ajinn
- nychen2000
- wjianwei666
- johnsmith9th
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
【单调队列】HDU 3415 Max Sum of Max-K-sub-sequence
KIDx的解题报告
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3415
题意:给出一个有n个数字的环状序列(其中每个数在-1000到1000之间,且n<=1000 ...
poj 3844 Divisible Subsequences
Description
Given a sequence of positive integers, count all contiguous subsequences (sometimes called substrings, in contrast to subsequences, which may leave out elements) the sum of which i ...
poj 3844 Divisible Subsequences
Description
Given a sequence of positive integers, count all contiguous subsequences (sometimes called substrings, in contrast to subsequences, which may leave out elements) the sum of which i ...
【polya+Euler】HDU 2239 机器人的项链
KIDx的解题报告
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2239
题意:这个项链有n个的珠子组成,珠子的类型有m种,请问能组成多少种不同类型 ...
HDU 1979 Fill the blanks
KIDx的解题报告
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1979
题意:
打表可知只有200+个4位逆素数,然后枚举四个4位逆素数然后暴力检验一下,我的剪枝可能不够直接超时了T-T,打个表存在数组中处理下即可,下面是我的超时代码(只能用来打表了):
#include <iostream>
us ...
hdu2824筛选法欧拉函数+求和
hdu2824
筛选版本的欧拉公式模板
#include<iostream>
#define MAX 3000000
using namespace std;
__int64 E[MAX+10];
void init() //模板
{
int i,j;
memset(E,0,sizeof(E));
E[1]=1;
...
hdu1072 nightmare
hdu1072 nightmare
地图能重复走……跟hdu1242不一点不同
#include<iostream>
#include<stdio.h>
#include<queue>
using namespace std;
int mp[10][10],m,n,Sx,Sy,Dx,Dy,flag,dir[4][2]={{0,1},{0, ...
hdu1385Minimum Transport Cost-floyd+打印路径
hdu1385
肚子好饿!
#include<iostream>
#include<stdio.h>
#include<string.h>
#define M 500
#define INF 1000000000
using namespace std;
int mp[M][M],path[M][M],fee[M];
int ma ...
Uva 112 Tree Summing 二叉树
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=48
主要思路:这道题目的难点在于如何把题目所给的输入数据转换成一棵树。首先定义一个字符型的变量c,再定义一个整型的变量num。因为开始一定是'(',所以先输入c(cin> ...
UVa 401 Palindromes 字符串基础
题目链接:http://acm.hust.edu.cn:8080/judge/problem/viewProblem.action?id=19520
题目大意:给你一个字符串,一要你判断是否是回文串;二要把这个字符串的每一个字符按照给定的规则翻转,而然后判断翻转后的字符串是否是原串的逆序。
思路不难,但是有些地方要注意。首先要注意的一个问题是,大写字母O和数字0是一样的。这一点我觉得题目的表 ...
hdu 1533 Going Home(KM算法)
Going Home
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 1415 Accepted Submission(s): 698
Problem Description
On a grid map there ...
hdu 2255 奔小康赚大钱(我的第一个KM匹配)
奔小康赚大钱
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 798 Accepted Submission(s): 362Problem Description
传说在遥远的地方有一个非常富裕的村落,有一天,村长决定进行制度改 ...
谁主张、谁举证 ACM crashing balloon / zoj 1003
题目详情可以参考这里:
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3
ZOJ上的判定标准是:
b不服,站出来质疑;
如果a能举证说:你瞧,存在一种合理的解释,a = a[1]*a[2]*…*a[n], b = b[1]*b[2]*…*b[m]; 其中 2<= a[i], b[j] <=100, 且 a[i] ...