链接:点击打开链接
题意:n个数分成m段不相交子段和最大
代码:
#include
#include
#include
#include
#include
using namespace std;
const int INF=0x3f3f3f3f;
int a[1000005],sum[1000005];
int dp[2][1000005][2];
int ma...
分类:
其他好文 时间:
2016-05-13 01:05:57
阅读次数:
186
任务及代码
/*
*Copyright (c)2016,csdn学院
*All rights reserved.
*文件名称:lzz.c
*作 者:兰泽泽
*完成日期:2016年5月8日
*版 本 号:v1.0
*问题描述:求最大公约数
(1)输入两个数,并求出其最大公约数。请写出求最大公约数的函数
(2)在上面程序基础上,增加函数gcds函数的声明和定义,实现求4数最大公约数的功能
*程...
分类:
其他好文 时间:
2016-05-13 01:05:53
阅读次数:
241
65.JAVA编程思想——关于Runnable
在早些时候,曾建议大家在将一个程序片或主Frame 当作Runnable 的实现形式之前,一定要好好地想一想。若采用那种方式,就只能在自己的程序中使用其中的一个线程。这便限制了灵活性,一旦需要用到属于那种类型的多个线程,就会遇到不必要的麻烦。
当然,如果必须从一个类继承,而且想使类具有线程处理能力,则Runnable 是一种正确的方案。最后一个例...
分类:
编程语言 时间:
2016-05-13 01:05:05
阅读次数:
170
F - Aeroplane chess
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d
& %I64u
Submit Status Practice HDU
4405
Appoint description:
System Crawler (2016-05-07)
Des...
分类:
其他好文 时间:
2016-05-13 01:05:11
阅读次数:
210
上面博客学习了使用反射查看类型的信息,以及使用反射获取特性对象。
下面使用反射来动态创建对象。首先准备一个Test类: public class TestClass
{
public TestClass()
{
Console.WriteLine("这是一个无参构造函数");
}
public ...
#include
#include
#include
#include
#include
#include
#include
#include <vtkPolyDa...
分类:
其他好文 时间:
2016-05-13 01:05:12
阅读次数:
905
B - Networking
Time Limit:1000MS Memory Limit:10000KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
You are assigned to design network connections between certain p...
分类:
Web程序 时间:
2016-05-13 01:05:18
阅读次数:
271
问题?Error getting nested result map values for 'user_inf'. Cause: java.sql.SQLException: Cannot convert value '0000-00-00 00:00:00' from column 8 to TIMESTAMP.
错误:org.apache.ibatis.exceptions.Per...
分类:
数据库 时间:
2016-05-13 01:04:21
阅读次数:
551
70.JAVA编程思想——Web应用
创建一个应用,令其在真实的Web 环境中运行,它将把Java 的优势表现得淋漓尽致。这个应用的一部分是在Web 服务器上运行的一个Java 程序,另一部分则是一个“程序片”或“小应用程序”(Applet),从服务器下载至浏览器(即“客户”)。这个程序片从用户那里收集信息,并将其传回Web 服务器上运行的应用程序。程序的任务非常简单:程序片会询问用户的E-ma...
分类:
编程语言 时间:
2016-05-13 01:05:01
阅读次数:
269
环境状态:
系统:Ubuntu 14.04
GUI桌面:Unity
步骤:
I:在/usr/share/applications/文件夹下面建立自己的快捷方式文件:
sudo gedit /usr/share/applications/Putty.desktop
II:文件内容如下:(前后不能有多余的空格)
[Desktop Entry] //每个...
分类:
系统相关 时间:
2016-05-13 01:03:57
阅读次数:
405
How Many Tables
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 22498 Accepted Submission(s): 11193
Problem Description
Today is Ignatiu...
分类:
其他好文 时间:
2016-05-13 01:04:47
阅读次数:
216
不容易系列之二
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 23695 Accepted Submission(s): 18930
Problem Description
你活的不容易,我活的不容易,他活...
分类:
其他好文 时间:
2016-05-13 01:04:47
阅读次数:
125
Defuse the Bomb
Time Limit: 2 Seconds Memory Limit: 65536 KB
The bomb is about to explode! Please defuse it as soon as possible!
There is a display showing a number from 1 to 4 on the bomb...
分类:
其他好文 时间:
2016-05-13 01:03:53
阅读次数:
404
很容易就能看出是结果组合数,所以直接套用Lucas模版即可...
分类:
其他好文 时间:
2016-05-13 01:02:14
阅读次数:
219
今天总结一下java中常用的一种测试方法–单元测试JUnit。单元测试针的对象是类中的方法,被测试的方法必须满足如下几个条件:
1. 无返回值
2. 无参数
3. public修饰
下面给出一个例子:import org.junit.Test;
public class Test2 {
@Test
public void sum() {
int a=9...
分类:
其他好文 时间:
2016-05-13 01:03:43
阅读次数:
183
注册一个对象给qml,实现代码:
Gamesub.h#pragma once
#include
#include
#include
#include
class Gamesub :public QObject
{
Q_OBJECT
public:
Gamesub(QObj...
分类:
编程语言 时间:
2016-05-13 01:04:01
阅读次数:
2212