自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 2021-1-26 灵动ICPC集训

2021-1-26 灵动ICPC集训 学习内容:STL2,贪心算法 1.Doubles 试题来源:ACM Mid-Central USA 2003、 题目 As part of an arithmetic competency program, your students will be given randomly generated lists of from 2 to 15 unique positive integers and asked to determine how many items i

2021-01-26 22:35:29 368

原创 2021-1-25 灵动ICPC集训

2021-1-25 灵动ICPC集训 1.The Blocks Problem 试题来源:Duke Internet Programming Contest 1990 题目 Many areas of Computer Science use simple, abstract domains for both analytical and empirical studies. For example, an early AI study of planning and robotics (STRIPS) u

2021-01-25 22:47:18 315

原创 学习知识整理

学习知识整理 1.memset()函数 2.EOF 3.bool函数 4.tolower/toupper 5.定义有序对 6.sort快速排序 7.初始化问题 8.π的表达方式 9.getline() 10.swap函数

2021-01-24 15:29:02 230

原创 2021-01-22 灵动ICPC集训

2021-01-22 灵动ICPC集训 学习内容:归并排序、快速排序、STL、结构体排序 1.Brainman 试题来源:TUD Programming Contest 2003, Darmstadt, Germany 题目 思考过程 源代码 2.Ultra-QuickSort 试题来源:Waterloo local 2005.02.05 题目 思考过程 源代码 3.Sort 题目 思考过程 源代码 4. Word Amalgamation 试题来源:ACM Mid-Central USA 1998 题目

2021-01-22 18:47:58 529 1

原创 2021-01-21 灵动ICPC集训

2021-01-21 灵动ICPC集训 学习内容:数学初步、排序、简单排序算法、、归并排序、快速排序

2021-01-21 18:33:05 459

原创 2021-01-20 灵动ICPC集训

2021-01-20 灵动ICPC寒假集训 学习内容:几何初步、欧几里得、概率论微积分初步、矩阵计算、数学初步 1.Birthday Cake 试题来源:Randy Game - Programming Contest 2001A 源代码 2.Is This Integration ? 试题来源:Math & Number Theory Lovers’ Contest 2001 源代码 3. Simple division 试题来源:November 2002 Monthly Contest 源代码

2021-01-20 22:47:48 519

原创 2021-01-19 灵动ICPC集训

2021-01-19 灵动ICPC寒假集训 学习内容:结构体、指针、几何初步 1. 2.

2021-01-19 23:44:39 378 2

原创 2021-01-18 灵动ICPC集训

2021-01-18 灵动ICPC集训 1.Specialized Four-Digit Numbers 试题来源:ACM Pacific Northwest 2004 源代码: #include<stdio.h> int Calc(int k, int b) { int x,sum=0; while(k)//进制转换各位求和 { x=k%b; sum+=x; k=k/b; } return sum; }

2021-01-19 00:13:28 437

空空如也

空空如也

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

TA关注的人

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