码迷,mamicode.com
首页 > 2017年03月19日 > 全部分享
hdu2084 数塔 DP
数字三角形,DP裸题 1 #include<stdio.h> 2 #include<string.h> 3 #define max(a,b) (a)>(b)?a:b 4 5 int g[101][101],dp[101][101]; 6 7 int max1(int i,int j){ 8 retu ...
分类:其他好文   时间:2017-03-19 11:10:51    阅读次数:170
用户登录模块的实现
页面验证部分: 1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Tran ...
分类:其他好文   时间:2017-03-19 11:10:24    阅读次数:220
配置adb环境变量
前几天公司电脑坏了,换了台电脑,然后adb竟然忘了怎么配置的了,甚是烦人。又去网上搜了下,现在记录如下。以下内容为转载 该博文主要转自http://www.cnblogs.com/cnwutianhao/p/6557571.html。特此感谢! 方法一: 在没有配置adb之前,我们打开Windows ...
分类:数据库   时间:2017-03-19 11:10:05    阅读次数:194
hdu1029
hdu1029 找出数列中出现(N+1)/2次的数,暴力模拟 1 #include<stdio.h> 2 #include<map> 3 using namespace std; 4 5 int main(){ 6 int n; 7 while(scanf("%d",&n)!=EOF){ 8 map ...
分类:其他好文   时间:2017-03-19 11:09:30    阅读次数:142
hdu1097
hdu1097 求a^b的末位数 打表O(1) 1 import java.util.*; 2 3 public class Main { 4 static int [][]a = new int[15][15]; 5 static int []num = new int[15]; 6 public ...
分类:其他好文   时间:2017-03-19 11:09:11    阅读次数:107
hdu2089 不要62 数位DP
数字中不能出现4或者连续的62,数位DP裸题 1 #include<stdio.h> 2 #include<string.h> 3 long long ans; 4 bool a[1000000]; 5 void fun(){ 6 for(long long i=0;i<=1000000;i++){ ...
分类:其他好文   时间:2017-03-19 11:08:52    阅读次数:184
hdu2087 剪花布条 暴力/KMP
在字符串中不可重叠地寻找子串数量,暴力/KMP 1 #include<stdio.h> 2 #include<string.h> 3 4 int main(){ 5 char a[1005],b[1005]; 6 while(scanf("%s",a)!=EOF&&a[0]!='#'){ 7 sca ...
分类:其他好文   时间:2017-03-19 11:08:36    阅读次数:176
【教程】webstorm的破解以及汉化
安装包以及汉化包的下载(大小151M): 链接:http://pan.baidu.com/s/1hsA5GUS 密码:roui 破解: 正常安装的webstorm是要注册码的,这里教你免费使用的方法,初次安装前,先把电脑的时间设置为2030年以后(时间随意设置,2030年或许你都不敲代码了吧,哈哈) ...
分类:Web程序   时间:2017-03-19 11:08:20    阅读次数:247
hdu2059 龟兔赛跑 DP
N^2的dp,刚入门的时候很难想到,dp[i]表示到达第i个点的最小时间,可以从之前任意一点处加上充电时间充电转移过来。 1 #include<stdio.h> 2 #define min(a,b) (a)<(b)?a:b 3 int L,N,C,T,VR,VT1,VT2,p[102]; 4 dou ...
分类:其他好文   时间:2017-03-19 11:08:02    阅读次数:185
hdu1238 Substrings 扩展KMP
You are given a number of case-sensitive strings of alphabetic characters, find the largest string X, such that either X, or its inverse can be found ...
分类:其他好文   时间:2017-03-19 11:07:40    阅读次数:164
hdu2069-2071
hdu2069 选取硬币组成定值,暴力 1 #include<stdio.h> 2 int v[6]={0,50,25,10,5,1}; 3 4 int main(){ 5 int n; 6 while(scanf("%d",&n)!=EOF){ 7 int ans=0,ans1=0; 8 for( ...
分类:其他好文   时间:2017-03-19 11:07:22    阅读次数:113
hdu1233 还是畅通工程 最小生成树
给出修建边的边权,求连通所有点的最小花费 最小生成树裸题 1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 using namespace std; 5 6 struct seg{ 7 int a,b,l; 8 bool ...
分类:其他好文   时间:2017-03-19 11:07:05    阅读次数:173
hdu2098 分拆素数和 素数筛
将一个偶数拆成两个素数的和,欧拉筛暴力 1 #include<stdio.h> 2 #include<string.h> 3 #define N 10001 4 int prime[10001]; 5 bool check[10001]; 6 int n,i,ans,tot=0,j; 7 8 voi ...
分类:其他好文   时间:2017-03-19 11:06:42    阅读次数:197
再谈 Struts1.x 的运行机制
1、Action类 execute 方法 ActionMapping 对应 <action path="user" type="myuser.UserAction" name="user" parameter="op"></action> ActionForward 对应 <forward name ...
分类:其他好文   时间:2017-03-19 11:06:12    阅读次数:115
hdu1255 覆盖的面积 线段树-扫描线
矩形面积并 线段树-扫描线裸题 1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 #include<math.h> 5 using namespace std; 6 const int maxm=2e3+5; 7 con ...
分类:其他好文   时间:2017-03-19 11:05:48    阅读次数:249
hdu2065 "红色病毒"问题 指数型母函数
关于指数型母函数的题目,通过用公式并展开得到系数做的吧,取最后两位就是对100取模 1 #include<stdio.h> 2 3 int QuickPow(int a,long long n,int p){ 4 int temp=a,ans=1; 5 while(n){ 6 if(n&1)ans= ...
分类:其他好文   时间:2017-03-19 11:05:26    阅读次数:142
hdu2085-2086
hdu2085 模拟 1 #include<stdio.h> 2 long long a[35][2]; 3 void fun(){ 4 a[0][0]=1; 5 a[0][1]=0; 6 for(int i=1;i<=33;i++){ 7 a[i][0]=3*a[i-1][0]+2*a[i-1][ ...
分类:其他好文   时间:2017-03-19 11:05:04    阅读次数:169
1002条   上一页 1 ... 48 49 50 51 52 53 54 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!