码迷,mamicode.com
首页 > 其他好文
HDUJ 1789 Doing Homework again 贪心
Doing Homework again Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 6335    Accepted Submission(s): 3746 Problem Description Ignatiu...
分类:其他好文   时间:2014-07-21 11:46:56    阅读次数:242
hdu4858 项目管理 bestcoder round1 B
唔。。弱弱的暴力水果 0操作时,将v加到u上,可以直接把v加到u相连的点上,这样输出时直接输出要求点的值。 布这样的话反正我是超时了。。 #include #include #include #include #include #include #include const int maxn=100010; using namespace std; vector e[maxn]...
分类:其他好文   时间:2014-07-22 00:31:39    阅读次数:204
hdu 1063 Exponentiation 大数
Problem Description Problems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the national debt is a taxing experience for m...
分类:其他好文   时间:2014-07-21 11:17:56    阅读次数:155
<pre>标签
标签最基本的认识就是预格式化文本,被包围在 pre 元素中的文本通常会保留空格和换行符。而文本也会呈现为等宽字体。经常用于在网页中显示计算机源代码。 1、格式化文本举例 .post_code { padding:10px; border:dotted 1px #0000ff; width:650px; height:auto; overflow:scroll; } ...
分类:其他好文   时间:2014-07-21 11:41:56    阅读次数:248
[ACM] POJ 3485 Highway (区间选点问题)
Highway Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 871   Accepted: 402 Description Bob is a skilled engineer. He must design a highway that crosses a ...
分类:其他好文   时间:2014-07-21 11:23:56    阅读次数:176
HDOJ 1040 As Easy As A+B
As Easy As A+B Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 36141    Accepted Submission(s): 15642 Problem Description These day...
分类:其他好文   时间:2014-07-22 00:26:35    阅读次数:233
Vector 删除元素
数据结构上机测试1:顺序表的应用 Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 在长度为n(n 输入 第一行输入表的长度n; 第二行依次输入顺序表初始存放的n个元素值。 输出 第一行输出完成多余元素删除以后顺序表的元素个数; 第二行依次输出完成删除后的顺序表元素。 示例输入 12 5 ...
分类:其他好文   时间:2014-07-21 13:35:34    阅读次数:177
The Dole Queue
The Dole Queue Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Submit Status Description  The Dole Queue  In a serious attempt to downsi...
分类:其他好文   时间:2014-07-22 00:29:35    阅读次数:287
uva 12096 - The SetStack Computer(STL 的运用)
这道题目貌似就是在不停地用STL中的内容,对STL熟练运用的大神估计坐起来会比较easy。。 不过对于我这种看着代码还是需要上网查函数运用的菜鸟来说,若让我自己做这道题,肯定不会使用STL。。 就当对STL的学习了。 #include #include #include #include #include #include #include #include #include//set_un...
分类:其他好文   时间:2014-07-21 11:44:55    阅读次数:320
crm操作传真实体
crm创建传真,crm将传真分派给其他用户或团队,crm发送传真,crm删除指定的安全主体(用户或团队)对传真的所有访问权限,crm删除传真...
分类:其他好文   时间:2014-07-21 11:15:55    阅读次数:199
STL_稀疏图,树_使用vector邻接表存储
本文出自:http://blog.csdn.net/svitter 分析:vector是STL模板中的容器。可以利用其性质来构建邻接表。 定义: #include #define MAXN 10000 //max n of a tree or graph //if is a tree, n / 2 is OK ; using namespace std; typedef ve...
分类:其他好文   时间:2014-07-21 11:27:55    阅读次数:228
查找List 某一段数据
代码如下:  public void SelectData()    {             List r = new List();             r.Add(1);             r.Add(2);             r.Add(3);             r.Add(4);             r.Add(5);            ...
分类:其他好文   时间:2014-07-21 11:26:55    阅读次数:169
uva 201 - Squares(自己的方法,同学有更好一点点的方法)
#include #include #include #include #include using namespace std; int h[20][20]; int v[20][20]; int size_[20]; int n,m; int flag; void judge(int x,int y)//这是关键部分的代码,用来判读那是否能构成square; { int a1=n-x...
分类:其他好文   时间:2014-07-21 13:36:09    阅读次数:221
crm操作电子邮件
crm创建电子邮件,crm异步发送电子邮件,crm检查是否应该将传入电子邮件提升到 Microsoft Dynamics CRM 系统,crm批量发送电子邮件,crm使用模板发送电子邮件,crm发送电子邮件,crm获取用于对存储在 Microsoft Dynamics CRM 数据库中的用户或队列的电子邮件凭据进行加密或解密的密钥,crm删除电子邮件...
分类:其他好文   时间:2014-07-21 11:14:45    阅读次数:260
uva 815 - Flooded!(点名要做的思路题~我觉得方法挺好)
#include #include #include #include using namespace std; double a[100000]; double vol[100000]; int m,n; double v1,v2; bool cmp(double aa,double bb) { if(aa>bb) return true; } int main() { int...
分类:其他好文   时间:2014-07-21 11:43:45    阅读次数:226
计算机操作系统学习笔记_9_文件管理 --文件系统基础
文件管理 --文件系统基础 一、文件的概念 1.文件定义 文件是具有符号名的一组信息的集合。 2.文件属性 文件的属性是指与文件记录的数据相关的所有相关信息,包括: 基本信息:文件名,文件别名,文件类型等; 存储地址信息:文件物理位置,文件长度; 文件访问控制信息:文件的创建者,所有者,许可那些用户能够读写或运行[类Linux/UNIX]; 文件使用信息:文件创建的时间日期,最近的使用日期时间等。...
分类:其他好文   时间:2014-07-21 11:25:45    阅读次数:267
静态分割窗口
静态分割窗口        创建静态分割窗口的步骤为:        1. 在父框架类中定义一个CSplitterWnd类型的成员对象。        2. 重载父框架类的CFrameWnd::OnCreateClient成员函数。        3. 在重载的CFrameWnd::OnCreateClient函数中调用CSplitterWnd成员对象的CreateStat...
分类:其他好文   时间:2014-07-21 11:47:45    阅读次数:190
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!