数字三角形,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竟然忘了怎么配置的了,甚是烦人。又去网上搜了下,现在记录如下。以下内容为转载 该博文主要转自http://www.cnblogs.com/cnwutianhao/p/6557571.html。特此感谢! 方法一: 在没有配置adb之前,我们打开Windows ...
分类:
数据库 时间:
2017-03-19 11:10:05
阅读次数:
194
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 求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
数字中不能出现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
在字符串中不可重叠地寻找子串数量,暴力/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
安装包以及汉化包的下载(大小151M): 链接:http://pan.baidu.com/s/1hsA5GUS 密码:roui 破解: 正常安装的webstorm是要注册码的,这里教你免费使用的方法,初次安装前,先把电脑的时间设置为2030年以后(时间随意设置,2030年或许你都不敲代码了吧,哈哈) ...
分类:
Web程序 时间:
2017-03-19 11:08:20
阅读次数:
247
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
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 选取硬币组成定值,暴力 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
给出修建边的边权,求连通所有点的最小花费 最小生成树裸题 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
将一个偶数拆成两个素数的和,欧拉筛暴力 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
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
矩形面积并 线段树-扫描线裸题 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
关于指数型母函数的题目,通过用公式并展开得到系数做的吧,取最后两位就是对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 模拟 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