自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

carrie17的博客

努力变强的小凉

  • 博客(11)
  • 收藏
  • 关注

原创 HDU - 1074 Doing Homework

HDU - 1074 Doing Homework题目Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher gives him a deadline of handing in the homework. If Ignatius h...

2019-03-26 21:06:32 200

原创 HDU - 1160 FatMouse's Speed

FatMouse’s SpeedFatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as large a subset of this data as possibl...

2018-11-24 14:40:37 152

原创 HDU - 1074 Doing Homework

//状压DP//Doing Homework#include <iostream>#include <cstring>#include <string>#include <algorithm>#include <cmath>using namespace std;#define INF 0x3f3f3f3fstruc...

2018-11-24 11:00:23 162

原创 2017CCPC秦皇岛ZOJ 3988 Prime Set

#include <iostream>#include <cstdio>#include <cstring>#include <string>#include <algorithm>#include <cmath>#include <map>#include <queue>

2018-10-20 15:39:53 149

原创 UVA11987:Almost Union-Find

UVA11987:Almost Union-Find题意:给m,n分别表示元素个数和操作次数操作分成3种:1 p q 将p所在的集合和q所在的集合合并2 p q 将p移至q所在的集合输出p所在集合的元素个数和元素和思路: 并查集,通过编号标记节点,对于2操作,当移除一个元素时,改变元素的标记,相当于使此元素自成一树,然后进行1操作 #include <iostr...

2018-08-23 21:31:12 172

原创 HDU 1069 Monkey and Banana

Monkey and BananaA group of researchers are designing an experiment to test the IQ of a monkey. They will hang a banana at the roof of a building, and at the mean time, provide the monkey with som...

2018-05-21 20:10:46 112

原创 POJ-3279-Fliptile解题思路

POJ-3279-Fliptile解题思路相关文章(写得真的好好)https://blog.csdn.net/wr132/article/details/45250529题目Farmer John knows that an intellectually satisfied cow is a happy cow who will give more milk. He has arr...

2018-04-02 21:16:09 261

原创 CodeForce - 742B

题目 There are some beautiful girls in Arpa’s land as mentioned before. Once Arpa came up with an obvious problem: Given an array and a number x, count the number of pairs of indices i, j (1

2017-11-25 13:57:55 232

转载 从DLL中导出函数

http://msdn.microsoft.com/zh-cn/library/z4zxe9k8.DLL 文件的布局与 .exe 文件非常相似,但有一个重要的差异:DLL 文件包含导出表。 导出表包含 DLL 导出到其他可执行文件的每个函数的名称。 这些函数是 DLL 中的入口点;只有导出表中的函数可由其他可执行文件访问。 DLL 中的任何其他函数都是 DLL 私有的。 通过使用带

2017-11-11 10:32:51 450

原创 《汇编语言》 王爽版 实验10-2应用实例

问题描述:解决除法溢出的问题功能:进行不会产生溢出的除法运算,被除数为dword型,除数为word型,结果为dword型 参数:(ax)=dword型数据的低16位   (dx)=dword型数据的高16位   (cx)=除数 返回:(ax)=商的低16位   (dx)=商的高16位   (cx)=余数公式:X/N = int(H/N)*65536+[rem

2017-11-04 16:30:01 854

原创 《汇编语言》王爽版 实验10-1 应用举例

实验10-1应用实例:在屏幕8行3列,用绿色显示data段的字符串书中代码:assume cs:codedata segmentdb 'Welcome to masm!',0data endscode segmentstart:mov dh,8mov dl,3mov cl,2mov ax,datamov ds,ax ;ds存数据mov si,0call sh

2017-11-04 16:12:48 498

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除