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
Codeforce~
Codeforce
s Round #660 (Div. 2)
更新一下昨天打cf的题解A#includeusingnamespacestd;intmain(){intt,m;while(~scanf("%d",&t)){for(inti=0;iusingnamespacestd;intmain(){intt,n,q;while(~scanf("%d",&t)){for(inti=0;i0){for(inti=0;i
ether-
·
2020-09-13 03:20
算法
c++
acm竞赛
数学建模
Codeforce
s Round #480 (Div. 2) E. The Number Games(贪心)
题目链接:http://
codeforce
s.com/contest/980/problem/E从大到小添加节点,直接倍增判断能否添加就行了,挺没意思的代码:#include#definepbpush_backusingnamespacestd
_bibibibi
·
2020-09-13 02:41
codeforces
Codeforce
s Round #669 (Div. 2) A,B题解
A.AhahahahahahahahaAlexandrahasaneven-lengtharraya,consistingof0sand1s.Theelementsofthearrayareenumeratedfrom1ton.Shewantstoremoveatmostn2elements(wheren—lengthofarray)inthewaythatalternatingsumofthea
kitalekita
·
2020-09-13 02:33
Codeforce题解
Codeforce
984D-XOR-pyramid-找规律DP
(有任何问题欢迎留言或私聊(这题和异或和半毛钱关系都没有,也别被题面吓走了)题目:题意: 给你一段长度为nn序列,有qq次询问;每次询问区间[L,R][L,R]内最大的f(x)f(x)是多少?f(x)f(x)的含义:F(x)F(x)表示xx个数在规定运算下的值;当x=1x=1时,F(1)=a[1];F(1)=a[1];f(1)表示只有一个数,此时f(x)f(x)就等于那个值;当x>1x>1时,F(
Cwolf9
·
2020-09-13 02:07
基础DP/背包DP
Codeforce
s 908E. The Number Games题解(倍增)
传送门题意:给你一棵树,删掉树上的k个点,使得剩下的点构成的图依然联通,并且使2^(点权)之和尽量大,请从小到大输出这几个点。思路:因为是2的次方,所以很自然的能想到最大的点一定要保留,否则剩下的所有点加起来都没有他大,这是很显然的而且正确的贪心策略。所有可以以最大的点为根拎成一棵树。如果我们直接想删掉哪些点其实是不好的,我们能删的点只能是叶子结点或者是一个根和他所有的子孙,但如果我们只考虑叶子不
NR-NightRaven
·
2020-09-13 00:01
codeforces
Codeforce
s Round #670 (Div. 2) 深夜掉分(A - C题补题)
1406A.SubsetMexhttps://
codeforce
s.com/contest/1406/problem/AExampleinput460215013012402016123456output5340NoteInthefirsttestcase
RioTian
·
2020-09-13 00:00
2018南京Gym - 101981A - Adrien and Austin【博弈】
https://
codeforce
s.com/gym/101981/attachments分析:既然是每次选连续的一部分,那么第一个人一定可以将它分成两堆,如果可以做到分成两堆一样的,就具有对称性了,此时必胜
kmlver
·
2020-09-13 00:47
第一次个人排位赛(大二)
A-BearandFiveCards
CodeForce
s-680AAlittlebearLimakplaysagame.Hehasfivecards.Thereisonenumberwrittenoneachcard.Eachnumberisapositiveinteger.Limakcandiscard
wuyileiju__
·
2020-09-12 23:44
比赛
Codeforce
s Round #293 (Div.2) 小记
A.过pre,然后被hack了。而且到最后都没改过来--题意:给出两个串,s和t,保证字典序s#include#include#include#include#include#include#include#include#include#include#includeusingnamespacestd;typedeflonglongll;chars[110],t[110],a[110];intm
hadis_fukan
·
2020-09-12 23:58
codeforces
dp
Codeforce
s Round #214 (Div. 2) C. Dima and Salad
C.DimaandSaladtimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputDima,InnaandSeryozhahavegatheredinaroom.That'sright,someone'sgottogo.TocheerSeryozhaupandinspir
相知无悔
·
2020-09-12 23:08
cf
dp
codeforce
s 347A - Difference Row
给你一个序列,让你求(x1 - x2) + (x2 - x3) + ... + (xn - 1 - xn).值最大的一个序列,我们化简一下公式就会发现(x1 - x2) + (x2 - x3) + ... + (xn - 1 - xn).=x1-xn,也就是说只有第一个和最后一个是确定的,其他的随便了!也不是了,还要让你按字典序最小的排列,也就是说其他的是按飞递减序排列的,简单的一次排序就OK了。
deji2909
·
2020-09-12 22:46
Codeforce
s Round #368 (Div. 2)
A.Brain’sPhotos给你一张照片每个像素的颜色,问这是黑白照片还是彩色。。‘C’(cyan)‘M’(magenta)‘Y’(yellow)‘W’(white)‘G’(grey)‘B’(black)注意G是灰色!!#include#include#include#include#includeusingnamespacestd;intn,m;charc[3];intmain(){cin>>
accepoc
·
2020-09-12 20:08
codeforces
Codeforce
s Round #367 (Div. 2)
A.Beru-taxi给定n个出租车的位置和速度,问哪个最快到你家。。扫一遍即可。#includeusingnamespacestd;intn;doublea,b,c;doublex,y;doubledist(inta,intb,intc,intd){returnsqrt((a-c)*(a-c)+(b-d)*(b-d));}intmain(){cin>>x>>y;cin>>n;doubleans=
accepoc
·
2020-09-12 20:07
codeforces
codeforces
Educational
Codeforce
s Round 15
题目链接在这里A.MaximumIncrease最长上升子串#includeusingnamespacestd;intn;intarr[100005];intmain(){cin>>n;for(inti=1;i>arr[i];intans=0;intmx=0;for(inti=1;iarr[i-1]){ans++;}else{mx=max(ans,mx);ans=1;}}mx=max(mx,ans
accepoc
·
2020-09-12 20:07
codeforces
dp
模拟
STL
倍增
codeforces
算法
acm
CodeForce
s - 558E.A Simple Task字符串区间排序(计数排序+26棵线段树的维护)
题目链接http://
codeforce
s.com/problemset/problem/558/ETimelimit:5000msMemorylimit:524288kBThistaskisverysimple.GivenastringSoflengthnandqquerieseachqueryisontheformatijkwhichmeanssortthesubstringconsistin
lonely_wind_
·
2020-09-12 20:43
#
线段树&树状数组
字符串的处理
线段树
计数排序
Codeforce
s 1400E Clear the Multiset(贪心 + 分治)
链接:https://
codeforce
s.com/problemset/problem/1400/E来源:
Codeforce
s 思路:给你一个数组,现在你可以进行两种操作,操作1:将一段没有0的区间进行减一的操作
Max_n
·
2020-09-12 20:57
Divide
and
Conquer
/
Binary
Greedy
Codeforce
s 1327E. Count The Blocks(组合计数)
链接:http://
codeforce
s.com/contest/1327/problem/E来源:
Codeforce
s 题意:给你一个nnn,如果n=3n=3n=3,那么一个数字的表示形式可以是000,000,000,001,001,001,002,002,002
Max_n
·
2020-09-12 20:57
Mathematics
Codeforce
s 1367E Necklace Assembly(思维、gcd)
链接:https://
codeforce
s.com/contest/1367/problem/E来源:
Codeforce
s 思路:给你一个长度为nnn的字符串,现在让你构造一个新的字符串strstrstr
Max_n
·
2020-09-12 20:57
Ad
Hoc
Mathematics
【带权中位数】
CodeForce
s 1053C Putting Boxes Together
Source:Source:Source:
Codeforce
sRound#512(Div.1,basedonTechnocup2019EliminationRound1)Probelm:Probelm:
Toooooocold
·
2020-09-12 16:38
数据结构-树状数组/线段树
Codeforce
s Round #263 (Div. 2)
A.ApplemanandEasyTask题意:求是否所有格子周围都有偶数个'o'题解:暴力遍历即可。B.ApplemanandCardGame题意:一个人有n个卡片,每个卡片上面有一个英文大写字母。另一个人从中取k张,每张卡片的价值是取出同种卡片的数量。题解:统计每种卡片出现次数,排序从数量多的开始取。hack点为爆int。C.ApplemanandToastman题意:给出一个集合包含n个数,
aszmq
·
2020-09-12 15:34
contest
CF
codeforce
s_59B Fortune Telling
题目链接:http://
codeforce
s.com/problemset/problem/59/B//C++代码#includeusingnamespacestd;intmain(){intn,m,sum
伪神
·
2020-09-12 15:21
codeforces
codeforce
s #242 abcd
A:链接:http://
codeforce
s.com/problemset/problem/424/A题目大意:统计x的个数是不是总数一半,不是的话要变成一半所需改变次数以及改变后的序列代码:#include
爱生活爱丙妍
·
2020-09-12 14:13
codeforces
Codeforce
s 1153 C Serval and Parenthesis Sequence
http://
codeforce
s.com/problemset/problem/1153/CServalsoonsaidgoodbyetoJaparikindergarten,andbeganhislifeinJapariPrimarySchool.Inhisfavoritemathclass
csu_xiji
·
2020-09-12 14:45
贪心
Python解决
codeforce
s ---- 1
第一题1AA.TheatreSquaretimelimitpertest2secondsmemorylimitpertest64megabytesinputstandardinputoutputstandardoutputTheatreSquareinthecapitalcityofBerlandhasarectangularshapewiththesizen×mmeters.Ontheoccas
weixin_33898876
·
2020-09-12 14:13
Codeforce
s - 规律题 [占坑]
发现自己容易被卡水题,需要强行苟一下规律题CF上并没有对应的tag,所以本题集大部分对应百毒搜索按顺序刷本题集侧重于找规律的过程(不然做这些垃圾题有什么用)
Codeforce
s-1008C给定一个\(n
weixin_30455067
·
2020-09-12 14:23
codeforce
s上某题
一道
codeforce
s上的题目。题目大意:定义有k个不同的字符的字符串为好字符串。现在给出一个字符串,求解对该字符串的每个前缀Si至少是多少个好字符串的连接,若不能由好字符串连接而成则输出-1。
weixin_30247307
·
2020-09-12 14:18
数据结构与算法
codeforce
s 242d
题目:http://
codeforce
s.com/problemset/problem/242/D其实简单的BFS就可以搞定的。。但是我就是不能看出这个模型==!!
coder_hsc
·
2020-09-12 14:34
algorithm
codeforce
s解题报告与总结
原题目点击打开链接twopointer#include#include#include#include#include#include#include#includeusingnamespacestd;intn,t;inta[100010];boolcmp(inta,intb){returna>b;}intmain(){while(cin>>n>>t){for(inti=0;i>a[i];intT
wingooom
·
2020-09-12 14:33
ACM
CF
Codeforce
s Round #242 (Div. 2) B. Megacity
http:、、
codeforce
s.com/contest/424/problem/BB.Megacitytimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTheadministrationoftheTomskRegionfirmlybelievesthatit's
2012081629
·
2020-09-12 14:17
Codeforce
s 279B Books
#includeusingnamespacestd;inta[100020];intmain(){intn,t;scanf("%d%d",&n,&t);intsum=0,k=1,Max=0;for(inti=1;it){sum-=a[k];k++;}if(i-k+1>Max)Max=i-k+1;}printf("%d\n",Max);return0;}
nenu_xlp
·
2020-09-12 14:55
Codeforces
模拟
codeforce
s 484B
题意:给出一个数列a,让你求aimodaj的最大值,且ai>aj思路:枚举+二分、枚举每一个数的倍数,要使得结果最大肯定要找到小于这个倍数的最大值,这一注意最后要加的那一句代码、#include#include#include#includeusingnamespacestd;constintqq=200000+10;intnum[qq];intmain(){intn;scanf("%d",&n)
Yokile_
·
2020-09-12 13:08
数学方面
codeforce
s 549B B. Looksery Party(构造)
题目链接:点击打开链接题目大意:每个人有一些联系人(包括它自己),它可以选择每人发一条信息或者一条也不发,有个人给出了最终每个人收到短信的条数,只要有一个一个人收到的条数他就赢了,问不让他赢的方案是什么?题目分析:因为每个人都必须给自己发,所以初始每个人的短信数为0,如果某个人收到的条数到达那个人猜的,那么当前人发短信,知道没有人==那个人猜的短信条数为止,一定有解决方案的,所以输出-1啥的情况根
黎辰
·
2020-09-12 13:41
解题报告 之
CodeForce
s 6E Exposition
解题报告之
CodeForce
s6EExpositionDescriptionThereareseveraldaysleftbeforethefiftiethbirthdayofafamousBerland'swriterBerlbury.Inthisconnectionthelocallibrarydecidedtomakeanexpositionoftheworksofthisfamoussci
StanleyClinton
·
2020-09-12 13:51
ACM
ACM_数据结构
解题报告 之
CodeForce
s 91B Queue
解题报告之
CodeForce
s91BQueueDescriptionTherearenwalrusesstandinginaqueueinanairport.Theyarenumberedstartingfromthequeue'stail
StanleyClinton
·
2020-09-12 13:51
ACM
ACM_数据结构
CodeForces
91B
Queue
单调栈
ACM
数据结构
Codeforce
s-242B-Big Segment
DescriptionAcoordinatelinehasnsegments,thei-thsegmentstartsatthepositionliandendsatthepositionri.Wewilldenotesuchasegmentas[li, ri].Youhavesuggestedthatoneofthedefinedsegmentscoversallothers.Inotherwo
Honyelchak
·
2020-09-12 13:11
水题
codeforce
s-242A-Heads or Tails【暴力】
codeforce
s-242A-HeadsorTails【暴力】PetyaandVasyaaretossingacoin.TheirfriendValeraisappointedasajudge.Thegameisverysimple.FirstVasyatossesacoinxtimes
宣之于口
·
2020-09-12 13:00
codeforces
ACM_暴力
暴力
CodeForce
s - 10B Cinema Cashier【模拟】
【题目描述】AllcinemahallsinBerlandarerectangleswithKrowsofKseatseach,andKisanoddnumber.Rowsandseatsarenumberedfrom1toK.Forsafetyreasonspeople,whocometotheboxofficetobuytickets,arenotallowedtochooseseatsthe
invoKer-
·
2020-09-12 13:09
模拟
codeforces
CodeForce
s - 11A Increasing Sequence【水题】
【题目描述】Asequencea0, a1, …, at - 1iscalledincreasingifai - 1 usingnamespacestd;staticconstintMAXN=2000+10;inta[MAXN];intn,d;intmain(){cin>>n>>d;for(inti=0;i>a[i];intcnt=0;for(inti=1;ia[i-1])continue;int
invoKer-
·
2020-09-12 13:37
codeforces
水题
CodeForce
s - 10D Digital Root【dp】
【题目描述】Thisproblemdiffersfromonewhichwasontheonlinecontest.Thesequencea1, a2, …, aniscalledincreasing,ifai #include#includeusingnamespacestd;staticconstintMAXN=500+10;inta[MAXN],b[MAXN];intdp[MAXN][MAX
invoKer-
·
2020-09-12 13:37
codeforces
dp
CodeForce
s - 10C Digital Root【数论】
【题目描述】NotlongagoBillycameacrosssuchaproblem,wherethereweregiventhreenaturalnumbersA,BandCfromtherange[1, N],anditwasaskedtocheckwhethertheequationAB = Ciscorrect.RecentlyBillystudiedtheconceptofadigit
invoKer-
·
2020-09-12 13:37
codeforces
数论
CodeForce
s - 11B Jumping Jack【数学】
【题目描述】Jackisworkingonhisjumpingskillsrecently.Currentlyhe’slocatedatpointzeroofthenumberline.Hewouldliketogettothepointx.Inordertotrain,hehasdecidedthathe’llfirstjumpbyonlyoneunit,andeachsubsequentjum
invoKer-
·
2020-09-12 13:37
数学
codeforces
codeforce
s 1075B
B.TaxidriversandLyfthttp://
codeforce
s.com/problemset/problem/1075/B二分查找相邻司机,比较距离后确定最终结果。
besti_white
·
2020-09-12 12:11
cf
codeforce
s 1A 解题报告
来自Vic_:http://blog.csdn.net/Vic___每周一道算法题安慰自己竞赛的心,囧1A水题一道原题地址:http://
codeforce
s.com/problemset/problem
Vic020
·
2020-09-12 12:04
ACM/ICPC
CodeForces穿越火线
CodeForces
算法
解题报告
Vic_
【解题报告】 Educational
Codeforce
s Round 19
题目链接A.k-Factorization(
Codeforce
s797A)思路本题入手的角度是将输入的n看成一系列素数(素因子)的乘积。
TRiddle
·
2020-09-12 12:29
Codeforces
codeforce
s xxx d
因为要早睡所以赛后做这个题挺有意思nlgn的算法boolv[2111111];intpre[2111111];inta[222222];intn;intmain(){scanf("%d",&n);for(inti=0;i
ACpac
·
2020-09-12 12:40
codeforce
s 俄罗斯季度决赛题目sequence解答
原题大意如下:用两种操作产生数字序列:加倍和数字排序。数字排序就是升序方式排列数字,如数值6532,排列后的结果是2356。序列都是从1开始,序列前15个数值时124816234629581162234462895781156。请编程算出第n个序列中的数值是什么。1intmain(){inti,j,k,n,c,tmp,flag,bits,count,nn;intnum[20]={0,1,0};in
liyinchen808
·
2020-09-12 12:05
算法
解题报告
codeforce
s 242B
原题目链接如下:http://
codeforce
s.com/problemset/problem/242/B解这小道题目让我大费周折。主要原因是轻视了。人一轻敌,思维就不缜密。
liyinchen808
·
2020-09-12 12:04
算法
codeforce
s上解题感受
这两天找个到了个程序比赛的网站:www.
codeforce
s.com该网站最大的好处是,可以看大家的源代码,这对个人的进步很重要。
liyinchen808
·
2020-09-12 12:04
感悟
解题报告
codeforce
s 242A
原题链接如下:http://www.
codeforce
s.com/problemset/problem/242/A这题比较简单,但是这题给我个启示:不要时时苛求算法,有时性能稍逊一点,方法则简单很多,更容易理解
liyinchen808
·
2020-09-12 12:04
算法
Codeforce
s 1114C
Codeforce
s1114C题目1114C题意求bbb进制下的n!n!n!末尾有多少000分析首先要知道对于十进制下n!n!n!
strategist_614
·
2020-09-12 11:02
上一页
62
63
64
65
66
67
68
69
下一页
按字母分类:
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
其他