#include<iostream>#include<cstdio>#include<cstring>using namespace std;int v,n,r[5050],dp[50050];int main(){ scanf("%d%d",&v,&n); for (int i=1;i<=n;i+
分类:
其他好文 时间:
2016-03-15 00:19:49
阅读次数:
110
#include
using namespace std ;
class AA
{
public:
int a ;
//虚函数
virtual void say_hello(void)
{
cout << "this is your parent " << endl ;
}
};
class BB : public AA
{
public:
...
分类:
编程语言 时间:
2016-03-14 19:00:42
阅读次数:
212
配置文件如下:base-context.xml文件如下:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:c...
分类:
其他好文 时间:
2016-03-14 14:06:02
阅读次数:
3293
A stream will run with each new subscription added to it. This lesson shows the benefits of using share so that the same stream can be shared across m
分类:
Web程序 时间:
2016-03-14 07:07:30
阅读次数:
229
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; using System.Te
分类:
其他好文 时间:
2016-03-13 23:55:22
阅读次数:
190
#include<iostream>#include<cstdlib>#include<cstdio>#include<time.h>#include<windows.h>using namespace std;const int initial_lize=10000;const int addin
分类:
其他好文 时间:
2016-03-13 22:17:22
阅读次数:
306
MANACHER模板题。 #include<iostream>#include<cstdio>#include<cstring>using namespace std;char s[1000500],now[2000500];int l,num[2000500];void make_table(){
分类:
其他好文 时间:
2016-03-13 19:44:20
阅读次数:
144
函数的调用 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace hanshu{ class Program
#include<iostream> using namespace std; //BFS+优先队列(打印路径) #define N 500005 int c[N]; int dp[N]; //dp[i]保存的是长度为i的最长不降子序列的最小尾元素 int BS(int n,int x) //二分查
分类:
其他好文 时间:
2016-03-13 16:13:01
阅读次数:
189
I make Eclipse Plugins and I sell them to developers using Eclipse. Most of the visitors to my web site are not Eclipse experts. One of my key challen
分类:
数据库 时间:
2016-03-13 16:05:23
阅读次数:
238