E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
[ACM-ICPC][BOJ]
HDU 4587 TWO NODES(割点)(2013
ACM-ICPC
南京赛区全国邀请赛)
Description Suppose that G is an undirected graph, and the value of stab is defined as follows: Among the expression,G -i, -j is the remainder after removing nod
·
2015-11-13 02:04
node
HDU 4569 Special equations(枚举+数论)(2013
ACM-ICPC
长沙赛区全国邀请赛)
Problem Description Let f(x) = a nx n +...+ a 1x +a 0, in which a i (0 <= i <= n) are all known integers. We call f(x) 0 (mod m) congruence equation. If m is a composite, we c
·
2015-11-13 02:59
ICPC
HDU 4571 Travel in time(最短路径+DP)(2013
ACM-ICPC
长沙赛区全国邀请赛)
Problem Description Bob gets tired of playing games, leaves Alice, and travels to Changsha alone. Yuelu Mountain, Orange Island, Window of the World, the Provincial Museum etc...are scenic spots B
·
2015-11-13 02:58
time
(数学+矩阵快速幂)(2013
ACM-ICPC
长沙赛区全国邀请赛)
Problem Description A sequence S n is defined as: Where a, b, n, m are positive integers.┌x┐is the ceil of x. For example, ┌3.14┐=4. You are to calculate S n. You, a top coder, say
·
2015-11-13 02:57
ICPC
HDU 4568 Hunter(最短路径+DP)(2013
ACM-ICPC
长沙赛区全国邀请赛)
Problem Description One day, a hunter named James went to a mysterious area to find the treasures. James wanted to research the area and brought all treasures that he could. The area can be rep
·
2015-11-13 02:56
最短路径
ZOJ 3545 Rescue the Rabbit(AC自动机+状压DP)(The 2011
ACM-ICPC
Asia Dalian Regional Contest)
Dr. X is a biologist, who likes rabbits very much and can do everything for them. 2012 is coming, and Dr. X wants to take some rabbits to Noah's Ark, or there are no rabbits any more. A rabbit's gene
·
2015-11-12 21:29
AC自动机
HDU 4573 Throw the Stones(动态三维凸包)(2013
ACM-ICPC
长沙赛区全国邀请赛)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4573 Problem Description Remember our childhood? A few naked children throw stones standing on the same position, the one throws farther win the gam
·
2015-11-12 21:22
throw
hdu 4497 GCD and LCM(2013
ACM-ICPC
吉林通化全国邀请赛——题目重现)
质分解 + 简单计数。当时去比赛的时候太年轻了。。。这道题都没敢想。现在回过头来做了一下,发现挺简单的,当时没做这道题真是挺遗憾的。这道题就是把lcm / gcd 质分解,统计每个质因子的个数,然后就可以统计出总数了。 统计的时候假如有2个3,这样的话肯定是有一
·
2015-11-12 20:40
ICPC
ACM中使用JAVA的介绍
Java的优缺点各种书上都有,这里只说说用Java做
ACM-ICPC
的特点: (1) 最明显的好处是,学会Java,可以参加Java Challenge (2) 对于熟悉C/
·
2015-11-12 19:34
java
Congratulate to the foundation of Team BLess
Cup Province Cometition held in NUAA Sep 9th, 2007 We won the 7th school place in the 2007
ACM-ICPC
·
2015-11-12 16:35
less
【2014年4月份日常记录表(2014.4.1—4.30,30天)】
月份日常记录表(2014.4.1—4.30,30天) 日期 周次 天数 编程 日记 阅读 英语 备注 2014.4.1 周二 第1天 完成 完成 完成 完成 《
ACM-ICPC
·
2015-11-12 15:48
记录
ACM JAVA 熟悉一下
Java的优缺点各种书上都有,这里只说说用Java做
ACM-ICPC
的特点: (1) 最明显的好处是,学会Java,可以参加Java Challenge
·
2015-11-12 11:13
java
楼天城楼教主的acm心路历程(作为励志用)
2005 年
ACM-ICPC
——酸甜苦辣 我进入清华大学開始本科学习的时间是2004 年8 月,在进入清华大学的第一 年里,因为基础
·
2015-11-12 11:51
ACM
福州大学ACM代表队获36届
ACM-ICPC
全球总决赛第18名
不废话:请看省计算机学会的链接:http://www.cfcs.com.cn/archives/139.html
ACM-ICPC
的官方比赛结果链接(英文版):http://icpc.baylor.edu
·
2015-11-11 13:49
ICPC
ACM-ICPC
模板代码(自用)
View Code 1 #include <iostream> 2 #include <fstream> 3 #include <stdio.h> 4 using namespace std; 5 6 7 void fout(char n) 8 { 9 string cppname=" .cpp&qu
·
2015-11-11 13:00
ICPC
莫队算法
BOJ
2038 [2009国家集训队]小Z的袜子(hose)
题目传送门 1 /* 2 莫队算法:求出[l, r]上取出两只相同袜子的个数。 3 莫队算法是离线处理一类区间不修改查询类问题的算法。如果你知道了[L,R]的答案,可以在O(1)的时间下得到 4 [L,R-1]和[L,R+1]和[L-1,R]和[L+1,R],4个while是精华! 5 对于莫队算法我感觉就是暴力。只是预先知道了所有的询问。可以合理的组织计算每
·
2015-11-11 12:42
算法
2010
ACM-ICPC
Multi-University Training Contest(2)——Host by BUPT 解题报告[部分]
Shift Number 分析:比赛中做出最多的一道,但也确实卡了很多大牛、菜鸟。推导的过程如下图: 1 3 6 6 5 3 1 2 3 1 2 3
·
2015-11-11 05:26
test
电子科技大学2010年暑期训练计划
电子科大ACM团队,在学校教务处、学工部和团委等部门的大力支持下,在去年第34届
ACM-ICPC
国际大学生程序设计竞赛亚洲区域赛中,数学科学学院负责并组织六支队伍出战了六个赛区的比赛,最终获得四金、四银
·
2015-11-11 05:06
计划
关于本学期西南交通大学
ACM-ICPC
校集训队 训练计划(Beta 1.0)
在第十周新秀杯之后,从第十一周起的训练计划如下: 1.十一周的周一至周五进行ACM校集训队申请。申请方式从2014年11月17日0:00开始,发送申请者的姓名、学号、专业、电话、QQ以及大学(针对大一同学,若为其他年级,则为当前学年)之前关于数学竞赛以及信息奥林匹克竞赛的相关成绩和获得奖项(若没有则填写:获奖情况无)。本次申请不会刷人,申请则成功加入校集训队伍。 申请邮箱:sw
·
2015-11-11 01:01
ICPC
Contest - 第10届“新秀杯”ACM程序设计大赛网络资格赛 赛后信息(题解)
题目列表: Problem Id Title 2145 Problem A
ACM-ICPC
试炼 2151 Problem
·
2015-11-11 01:59
test
剪辑的楼天城的ACM之路
2005 年
ACM-ICPC
——酸甜苦辣我进入清华大学开始本科学习的时间是2004 年8 月,在进入清华大学的
·
2015-11-11 00:34
ACM
[代码]
ACM-ICPC
2012 Regionals Asia - Jinhua D Crazy Tank / HDU 4445
Abstract
ACM-ICPC
2012 Regionals Asia - Jinhua D Crazy Tank / HDU 4445 扫描线 Source http://acm.hdu.edu.cn
·
2015-11-09 14:29
ICPC
[代码]
ACM-ICPC
2012 Regionals Asia - Changchun A Alice and Bob / ZJU 3655
Abstract ZJU 3655 Alice and Bob 乱搞 离散化 implementation Body Source http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3655 Description 才不告诉你呢自己看去>_< Solution 显然,Alice最
·
2015-11-09 14:24
ICPC
[报告]
ACM-ICPC
2012 Regionals Asia - Changchun I Polaris of Pandora / ZJU 3663
Abstract
ACM-ICPC
2012 Regionals Asia - Changchun I Polaris of Pandora / ZJU 3663 三维计算几何 Body Source
·
2015-11-09 14:23
ICPC
[解题报告]
ACM-ICPC
Regionals 2011 Asia - Fuzhou C Bob's Race
Abstract
ACM-ICPC
Regionals 2011 Asia - Fuzhou C Bob's Race POJ4003 树形dp 单调队列 Body Source
·
2015-11-09 14:11
ICPC
[存档]xx-09210xxx-2010-ACM-ICPC竞赛总结
====
ACM-ICPC
亚洲区预选赛 分区赛竞赛个人总结 2010年赛季 一.个人训练情况 1.训练的数量与质量情况 做题总数: 231=128(BuptOJ)+13(PkuOJ)+39(Ural
·
2015-11-09 14:06
ICPC
[存档]xx-09210xxx-2011-ACM-ICPC竞赛总结
====
ACM-ICPC
亚洲区预选赛 分区赛竞赛个人总结 2011年赛季 1.
·
2015-11-09 14:06
ICPC
ACM-ICPC
竞赛模板
ACM-ICPC
竞赛模板(1) 1、 几何 4 1.1 注意 4 1.2 几何公式 4 1.3 多边形 6 1.4 多边形切割 9 1.5 浮点函数 10 1.6 面积 15 1.7 球面
·
2015-11-09 14:08
ICPC
ACM之Java速成(2)
Java的优缺点各种书上都有,这里只说说用Java做
ACM-ICPC
的特点: (1) 最明显的好处是,学会Java,可以参加Java Challenge :) (2) 对于熟悉C/C++的程序员来说
·
2015-11-09 14:54
java
Java语言在ACM解答中的应用
用Java做
ACM-ICPC
的特点: (1) 最明显的好处是,学会Java,可以参加Java Challenge :) 
·
2015-11-09 12:29
java语言
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest F】【贪心+ STL-优先队列】 Gourmet and Banquet 最大活动时间
#include #include #include #include #include #include #include #include #include #include #include #include #include usingnamespacestd; voidfre(){freopen("c://test//input.in","r",stdin);freopen("c://t
snowy_smile
·
2015-11-08 19:00
ACM
STL
ICPC
codeforces
贪心
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest D】【模拟 讨论】Boulevard 人流行走看是否相交 beautiful code
D.Boulevardtimelimitpertest2secondsmemorylimitpertest512megabytesinputstandardinputoutputstandardoutputWelcomingautumneveningisthebestforwalkingalongtheboulevardand n peopledecidedtodoso.Theboulevardc
snowy_smile
·
2015-11-08 17:00
模拟
ACM
ICPC
codeforces
讨论
一位ACMer过来人的心得
其实,500题仅仅是一个标志,而且仅仅表示你做
ACM-ICPC
有一定的时间, 我们训
·
2015-11-08 16:32
ACM
以此来励志吧!!!(选自:知乎)
在
ACM-ICPC
中获得很好成绩的人,现在都在干什么?
·
2015-11-08 16:16
励志
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest I】【水题】Lottery 均分气球最小修改数
I.Lotterytimelimitpertest2secondsmemorylimitpertest512megabytesinputstandardinputoutputstandardoutputTodayBerlandholdsalotterywithaprize —ahugesumofmoney!Thereare k persons,whoattendthelottery.Eachoft
snowy_smile
·
2015-11-08 13:00
ACM
ICPC
水题
codeforces
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest G】【数据结构-线段树】Hiring 准备时间完成时间最早完成日期
G.Hiringtimelimitpertest4secondsmemorylimitpertest512megabytesinputstandardinputoutputstandardoutputTheheadofhumanresourcesdepartmentdecidedtohireanewemployee.Hecreatedatestexerciseforcandidateswhichs
snowy_smile
·
2015-11-08 13:00
线段树
ACM
ICPC
codeforces
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest A】【模拟 STL-map】Email Aliases 不同邮箱的数量
A.EmailAliasestimelimitpertest2secondsmemorylimitpertest512megabytesinputstandardinputoutputstandardoutputPolycarphasquiterecentlylearnedaboutemailaliases.Ofcourse,heusedtosuspectthatthecaseofthelette
snowy_smile
·
2015-11-08 12:00
模拟
map
ACM
ICPC
codeforces
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest B】【暴力双排序】Layer Cake 若干矩形 选择相同长和宽的最大体积
B.LayerCaketimelimitpertest6secondsmemorylimitpertest512megabytesinputstandardinputoutputstandardoutputDashadecidedtobakeabigandtastylayercake.Inordertodothatshewentshoppingandbought n rectangularcake
snowy_smile
·
2015-11-08 12:00
排序
ACM
ICPC
codeforces
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest J】【暴力模拟】Cleaner Robot 机器人行走 决策固定
J.CleanerRobottimelimitpertest2secondsmemorylimitpertest512megabytesinputstandardinputoutputstandardoutputMashahasrecentlyboughtacleanerrobot,itcancleanafloorwithoutanybody'sassistance.SchematicallyMa
snowy_smile
·
2015-11-08 12:00
【2015-2016
ACM-ICPC
, NEERC, Southern Subregional Contest H】【观察找规律 脑洞 构造】Tourist Guide 关键点作端点最多路径
H.TouristGuidetimelimitpertest2secondsmemorylimitpertest512megabytesinputstandardinputoutputstandardoutputItisnotthateasytocreateatouristguideasonemightexpect.Agoodtouristguideshouldproperlydistribute
snowy_smile
·
2015-11-08 12:00
ACM
ICPC
codeforces
构造
脑洞
2013
ACM-ICPC
长沙赛区全国邀请赛——Bottles Arrangement
这题当时竟然没看啊…… 找规律:求和m+m+m-1+m-1+……前n项 #include<iostream>#include<stdio.h>#include<algorithm>#include<iomanip>#include<cmath>#include<string>using namespace std;int
·
2015-11-07 14:51
ICPC
2013
ACM-ICPC
长沙赛区全国邀请赛—Special equations
……但是没仔细看,直接跳过了 这题直接枚举就可以过了 #include<iostream>#include<stdio.h>#include<algorithm>#include<iomanip>#include<cmath>#include<string>using namespace std;__int64 a[5];
·
2015-11-07 14:51
ICPC
2013
ACM-ICPC
长沙赛区全国邀请赛——A So Easy!
这题在比赛的时候不知道怎么做,后来看了别人的解题报告,才知道公式sn=(a+sqrt(b))^n+(a-sqrt(b))^n; 具体推导 1 #include<iostream> 2 #include<stdio.h> 3 #include<algorithm> 4 #include<iomanip> 5
·
2015-11-07 14:50
ICPC
java acm输入输出
转自:http://wei.jian.fei.blog.163.com/blog/static/97300140201081425159217/ 下面说一下
ACM-ICPC
队员初用Java
·
2015-11-07 14:09
java
ACM-ICPC
Live Archive 2451 Brackets Sequence
动态规划 poj 1141 ural 1183 zoj 1463 都是相同的题目,黑书DP的例题 输入比较恶心,有空串。递推的时间是1s多,记忆化的时间是4.3s勉强过,原理不说了百度各种有 /* 1.dp[i][j]=dp[i+1][j-1] , p[i][j]=-1 , --->p[i+1][j-1] 2.dp[i][j
·
2015-11-07 13:19
sequence
楼塔当天领袖acm心理(作为励志使用)
2005 年
ACM-ICPC
——酸甜苦辣 我进入清华大学開始本科学习的时间是2004 年8 月,在进入清华大学的第一 年里,因为
·
2015-11-05 08:07
ACM
HDU5536 chip factory 【01字典树】
2015长春站
ACM-ICPC
的一道题据说现场赛O(n^3)可以过看了网上大牛代码以后顿悟了自己敲的。。。感觉好腻害。花了两小时弄懂代码。。
wxyfennie
·
2015-11-04 19:00
hdu 2010
ACM-ICPC
Multi-University Training Contest(1)——Host by FZU(杯具了)
题目链接:2010
ACM-ICPC
Multi-University Training Contest(1)——Host by FZU 昨天superbin把这套题拿出来做练习,5个小时过去了,杯具就这样发生了
·
2015-11-03 22:37
test
BOJ
- 也是OJ,Offline Judge!
http://www.offlinejudge.net/
BOJ
- 也是OJ,Offline Judge!
·
2015-11-02 15:20
in
ACM-ICPC
2009 China Northeast Area Contest :-(
昨天问大连理工的一个=队员,他告诉我是哪个院举办的,和谁联系,今天我看到有我,可是一直没有通知,我操,他通知发到哪去了,今天给大连理工负责人发短信,可是他说月初就发完比赛通知,不知道为什么你们没收到,我说可以补报吗?他说等通知。哎,我怎么那么倒霉呢!垃圾学校也不重视,以后学校没人搞acm了,都他妈的垃圾去吧!有些他妈的老师就是鸡巴,尤其那帮天天坐办公室的,就他
·
2015-11-02 15:19
test
上一页
13
14
15
16
17
18
19
20
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他