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~
CF1007D. Ants(树链剖分+线段树+2-SAT及前缀优化建图)
题目链接https://
codeforce
s.com/problemset/problem/1007/D题解这道题本身并不难,这里只是记录一下2-SAT的前缀优化建图的相关内容。
anzi3457
·
2020-09-16 18:23
数据结构与算法
codeforce
s9D How many trees?
传送门:http://
codeforce
s.com/problemset/problem/9/D【题解】树形dp,f(i,j)表示i个节点,高度为j的方案数,枚举左子树大小和哪一个子树高度为j-1即可。
aklm45097
·
2020-09-16 18:49
codeforce
s15E Triangles
传送门:http://
codeforce
s.com/problemset/problem/15/E【题解】1#include2usingnamespacestd;34typedeflonglongll;
aklm45097
·
2020-09-16 18:49
codeforce
s997C Sky full of stars
传送门:http://
codeforce
s.com/problemset/problem/997/C【题解】注意在把$i=0$或$j=0$分开考虑的时候,3上面的指数应该是$n(n-j)+j$至少一行一列相同颜色
aklm45097
·
2020-09-16 18:49
Codeforce
s Global Round 1 G.tree-tac-toe
题目大意链接题目大意给你一颗树,然后上面有某些节点染了白色,其余的无色。现在有两个人,两个人轮流染色。一个染白色,另一个人染黑色。他们可以选择任意一个没有染色的点染色。如果最先有个人染的色有三个点连在一起,那么就胜出。问谁必胜或平局。要求O(n)O(n)O(n)思考历程真是一道神仙题。一开始没有什么思路,然后手玩了一下样例也是没有思路。然后想想不染色的情况。然后就发现了三种情况(其中一种还是错的)
RainbowCrown
·
2020-09-16 18:24
CodeForces
Codeforce
s1295F Good Contest-DP
题目大意:传送门长度为nnn的数列,第iii个数可能的值为[li,ri][l_i,r_i][li,ri],求数列为不严格单调递减数列的期望。(2≤n≤50,0≤li≤ri≤1e9)(2\leqn\leq50,0\leql_i\leqr_i\leq1e9)(2≤n≤50,0≤li≤ri≤1e9)Solution:我们把这些区间分割成两两之间不互相覆盖的若干块,把这些分割后的区间从左到右标上号,可以得
Fizzmy
·
2020-09-16 17:33
DP
[BZOJ5276] Skyfall & [CF235E] Number Challenge [莫比乌斯反演]
id=5276
Codeforce
s-http://
codeforce
s.com/contest/235/problem/EDescription∑i=1A∑j=1B∑k=1Cd(ijk)mod&ThinSpace
*éphia
·
2020-09-16 17:19
莫比乌斯反演
数论
[邻接表DFS]最长链和最大环
id=3895(最大环)http://www.
codeforce
s.com/problemset/problem/116/C(最长链)两道题,都用的邻接表,这个邻接表上次也说过了,figo教的,next
weixin_30398227
·
2020-09-16 16:01
CodeForce
s 538C Tourist's Notes (简单题)
题目大意:你在爬山,总共有n个时刻,在hi高度.每次你可以选择不动,或者向上1或者向下1.现在给你最多高的时刻n,以及中间的m个记录表示该时刻在多少海拔.问在1-n内,处于的可能的最大海拔是多少.思路就不说了,只要遍历,检查这个时刻与上一个时刻否成立,方法看代码吧.这边说一下坑点.最大的坑点是一开始是多少高度是不确定的,假如第一个数据是a,b则一开始所处的最好的高度为b+a-1;这个注意的就差不多
jason_star
·
2020-09-16 16:01
ACM_CF
CodeForce
s 538B Quasi Binary(不错的贪心题 进制想法)
题目思路:你现在有一些数叫quasibinary,这些数仅由0和1构成,如10,.101,0,1现在给你k,你要用最少的quasibinary数,加起来等于k,先输出个数,然后输出这些数是哪些.一开始的思路比较挫,而且严重错误.这边说一下正确的思维方法:由于我们有的数仅仅是0和1,所以这边假设4135,则至少要加5次.而且也只需要5次,因为个位无论我们取什么,他每次都是1,所以至少取5次.至于其他
jason_star
·
2020-09-16 16:01
方法学习
ACM_CF
Last Corollary
CodeForce
s - 1364D(dfs树找最小环)
思路:对于所给的图形来说,可以分为树图和非树图。两种图的做法不一样,因为树图是没有环的,只有第二种选择。对于树图来说,我们找出树的每一层有哪几个点,并且保存起来。然后分别查看(0,2,4…)层的总数和(1,3,5…)层的总数,哪一个符合就输出哪一个就行。对于非树图来讲,就比较麻烦了。首先我们先找出非树图中最小的环来,假如这个环的长度为len.如果lenk的话,我们可以发现,对于一个长度为len的环
starlet_kiss
·
2020-09-16 16:14
dfs树找非树图中最小环
Shortest Cycle (最小环)
题目https://
codeforce
s.com/contest/1206/problem/D题意给你n个数如果两个数与运算不为0那么就存在一条边问这n个数的最小环思路与运算不为0即存在某一个二进制位都为
七九河开
·
2020-09-16 16:43
最短路
CodeForce
s - 1364D Ehabs Last Corollary(dfs树找最小环)
题目链接:点击查看题目大意:给出一个由n个结点和m条边构成的无向图,再给出一个k,需要在图中完成下面任意一种操作:找到一个大小恰好为的独立集找到一个大小不超过k的环题目分析:题目已经提示了题目一定有解,所以首先证明一下可行性:对于一个连通图,如果是树的话,可以按照深度划分,同奇偶的深度是可以构成独立集的,所以一定存在大小的独立集如果不是树的话,那么一定存在环,我们假设其最小环的长度为mmin,如果
Frozen_Guardian
·
2020-09-16 16:56
CodeForces上分
图论
2019年11月13日学习总结
这两天还是在做题,有时候回去做
codeforce
上的题目,尝试打了一下,不过网很卡,晚上上不去,没法做,只能第二天再看,看了一下南昌赛赛的题目,难度比较大,做起来比较费劲,在知到一些题目的思路的情况下,
嵊䳾
·
2020-09-16 16:19
codeforce
D. Shortest Cycle(floyd求最短环)
题目链接:http://
codeforce
s.com/contest/1206/problem/D给n个点,如果点a[i]&a[j]不为0,则点a[i]和a[j]直接可以连接双向边,如果这些点形成的图中有环
AaronChang6
·
2020-09-16 15:34
图论
CF #580 Div. 2 D. Shortest Cycle//floyd求最小正环(模板
https://
codeforce
s.com/contest/1206/problem/D题意:思路:如果有3个数二进制有一位都是1,那么答案就是3。否则最多有64*2个正整数。
RSHS
·
2020-09-16 15:28
图
[DFS找环]New Reform
CodeForce
s - 659E
Berlandhasncitiesconnectedbymbidirectionalroads.Noroadconnectsacitytoitself,andeachpairofcitiesisconnectedbynomorethanoneroad.Itisnotguaranteedthatyoucangetfromanycitytoanyotherone,usingonlytheexistin
ZHXU1998
·
2020-09-16 15:50
Codeforce
s Round #257 (Div. 1)D. Jzzhu and Numbers || CounterCode 2015 Subset
D.JzzhuandNumbers题意:给你n(1constintN=4e6+5;constintM=21;constintmod=1e9+7;#defineLLlonglongusingnamespacestd;intn,F[N],a[N],p[N];inlinevoidadd(int&x,inty){x+=y;if(x>=mod)x-=mod;if(x>=1;}returncnt;}intma
谁抢了我的happypeople
·
2020-09-16 15:48
codeforces
Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2)F. Bits And Pieces
多亏了橘子猫的博客,让我明白了,橘子猫NB,这里贴一手他的博客链接https://blog.csdn.net/ccsu_cat/article/details/100076916题目链接:https://
codeforce
s.com
谁抢了我的happypeople
·
2020-09-16 15:18
codeforces
Codeforce
s Round #590 (Div. 3)
Codeforce
sRound#590(Div.3)A.EqualizePricesAgain题意:求平均值并且向上取整#include#definemset(a,b)memset(a,b,sizeof
谁抢了我的happypeople
·
2020-09-16 15:18
codeforces
D. Shortest Cycle(无向图求最小环) AND HDU6736 Forest Program
题目链接:https://
codeforce
s.com/contest/1206/problem/D分析:经过思考,很容易发现若同一位的1的数量>=3,则答案直接为3,否则点的数量不会超过(2*64,除
谁抢了我的happypeople
·
2020-09-16 14:14
codeforces
Codeforce
s Round #670 (Div. 2) A-D
题目:link题解连接:A.SubsetMexB.MaximumProductC.LinkCutCentroidsD.ThreeSequences学习连接:https://blog.csdn.net/zstuyyyyccccbbbb/article/details/108560772
OerUUU
·
2020-09-16 13:56
codeforces
Codeforce
s Round #670 (Div. 2) C(树的重心)
题意:给你一棵树,你可以删除一条边,添加一条边(可以删除添加同一条),使得这棵树的重心唯一,输出删除的边,和添加的边。前置知识:树的重心及性质首先要知道什么是树的重心,树的重心就是:树中的一个节点,他满足,删除这个节点,剩下若干个连通块,这若干个连通块中最大的那个最小。重心一些基本性质有:删除重心后所得的所有子树,节点数不超过原树的1/2,一棵树最多有两个重心;树中所有节点到重心的距离之和最小,如
OerUUU
·
2020-09-16 13:56
树的重心
Codeforce
s Round #669 (Div. 2) A (思维)
题意:给你一个长度为n(n是偶数)只包含0和1的串,让你删除不超过n/2个元素,使得原来的串,奇数位置的值的和等于偶数位置的和,输出删除后的串。题解:记录1的数目和0的数目,如果0的数目大于n/2,直接输出0的个数,否则就输出n/2个1。#includeusingnamespacestd;intmain(){intT;cin>>T;while(T--){intn;cin>>n;intx;intcn
OerUUU
·
2020-09-16 13:56
思维
Codeforce
s Round #670 (Div. 2) B (枚举)
题意:给你一排数,有正有负,问你从中选择5个数,使得这五个数乘积最大,输出这个最大值。题解:先排序再枚举~一个正数和4个负数,2个正数和三个负数,等等。#include#definepbpush_back#definelllonglongusingnamespacestd;intmain(){intT;cin>>T;while(T--){intn;cin>>n;intflag=0;vectorz,
OerUUU
·
2020-09-16 13:56
枚举
Codeforce
s Round #669 (Div. 2) D (单调队列转移dp)
题意:给你n根柱子,你在第一根柱子上,要跳到第n根柱子,问你最少要跳几下。能从一根柱子跳到另外一根柱子的条件是:这两根柱子严格比他们中间的所有柱子高这两根柱子严格比他们中间的所有柱子低前一根柱子跳到后一根柱子满足其中一个就可以了。题解:首先dp【i】代表的是从第一根柱子跳到第iii根柱子上,最少要跳几下。我们中后往前看,那么第三个条件的方程是:dp[i]=dp[i−1]+1dp[i]=dp[i-1
OerUUU
·
2020-09-16 13:55
单调队列
&
单调栈
codeforce
s 149d Coloring Brackets
ColoringBracketstimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputOncePetyareadaproblemaboutabracketsequence.Hegaveitmuchthoughtbutdidn'tfindasolution.Todayyo
mousehao001
·
2020-09-16 12:37
动态规划
数位dp专辑
1.题目链接:
codeforce
s55D【题意】一个数能被它每一位的数字整除(0除外)则为beautifulnumber,问[l,r]之间有多少个这样的数【思路】考虑到每一位的数字只能是1,2,,9,最小公倍数为
mousehao001
·
2020-09-16 12:05
动态规划
dp
CodeForce
s - 160E Buses and People(线段树+三维偏序)
题目链接:点击查看题目大意:(网上复制一下别人的题意。。懒)有n辆公交车,每辆公交车有s(起始点),f(终点),t(发车时间)(行驶不需要时间)有m个人,每个人有l(起点),r(终点),t(出现时间)每个人出现后会选择最早经过他且可行的公交车(即满足s#include#include#include#include#include#include#include#include#include#i
Frozen_Guardian
·
2020-09-16 12:55
线段树
线段树
偏序问题
Codeforce
s 671B Robin Hood 二分答案
B.RobinHoodtimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputWeallknowtheimpressivestoryofRobinHood.RobinHooduseshisarcheryskillsandhiswitstostealthemoneyfromr
HARD_UNDERSTAND
·
2020-09-16 11:35
Codeforces
二分/三分
想法题
codeforces
Codeforce
s 873 D Merge Sort 【分治】
题目:http://
codeforce
s.com/contest/873/problem/D题意:子序列长度为n,归并排序,如果子序列不是有序的,那么就折半,再递归,直到子序列有序,总共递归k次。
HARD_UNDERSTAND
·
2020-09-16 11:35
Codeforces
搜索
Codeforce
s #443 Div.2 C. Short Program 【位操作】
题目:http://
codeforce
s.com/contest/879/problem/C题意:有一个函数,输入正整数x,经过n(n#include#include#include#include#include
HARD_UNDERSTAND
·
2020-09-16 11:35
Codeforces
构造
CodeForce
s Gym 100187 A Potion of Immortality
http://
codeforce
s.com/gym/100187/problem/AA.PotionofImmortalitytimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTheworldfamousscientistInnokentiyhasjustsynth
Calm微笑
·
2020-09-16 07:56
思维
codeforce
s Gym 100187A A. Potion of Immortality
A.PotionofImmortalityTimeLimit:20SecMemoryLimit:256MB题目连接http://
codeforce
s.com/gym/100187/problem/ADescriptionTheworldfamousscientistInnokentiyhasjustsynthesizedthepotionofimmortality.Unfortunately
b10l07
·
2020-09-16 07:55
Codeforce
s Round #Pi (Div. 2) D. One-Dimensional Battle Ships
AliceandBobloveplayingone-dimensionalbattleships.Theyplayonthefieldintheformofalineconsistingofnsquarecells(thatis,ona1 × ntable).AtthebeginningofthegameAliceputskshipsonthefieldwithouttellingtheirpos
weixin_30421809
·
2020-09-16 07:48
codeforce
s-gym-100187-D【组合数】【逆元】
题目链接:点击打开链接D.Holidaystimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputEveryoneknowsthatthebattleofEndorisjustamythfabledbyGeorgeLucasforpromotionofhismovie.A
Somethingwll
·
2020-09-16 07:42
逆元
Codeforces
codeforce
s-gym-100187-J【dfs】
题目链接:点击打开链接J.DeckShufflingtimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTheworldfamousscientistInnokentiycontinueshisinnovativeexperimentswithdecksofcards
Somethingwll
·
2020-09-16 07:42
DFS
Codeforces
codeforce
s-gym-100187-E【bfs】
题目链接:点击打开链接E.TwoLabyrinthstimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputAlabyrinthistherectangulargrid,eachofthecellsofwhichiseitherfreeorwall,andit'sposs
Somethingwll
·
2020-09-16 07:11
BFS
Codeforces
codeforce
s Gym 100187 A. Potion of Immortality
A.PotionofImmortalitytimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTheworldfamousscientistInnokentiyhasjustsynthesizedthepotionofimmortality.Unfortunately
AnICoo1
·
2020-09-16 07:05
数学问题
【
Codeforce
s Gym - 100187J】 + DFS
J.DeckShufflingtimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTheworldfamousscientistInnokentiycontinueshisinnovativeexperimentswithdecksofcards.Nowhehasad
楚江枫
·
2020-09-16 07:09
codeforces
BFS+DFS
CF——
Codeforce
s Round #432 (Div. 2, based on IndiaHacks Final Round 2017)
[C.FiveDimensionalPoints](http://
codeforce
s.com/contest/851/problem/C)1.2D时设原点为好点,所以最多周围有4个点,x,y正负轴上;
Tawn0000
·
2020-09-16 07:08
数学数论
Gym - 100187E E - Two Labyrinths —— bfs
题目链接:http://
codeforce
s.com/gym/100187/problem/E题解:一开始做的时候是将两幅图合并,然后直接bfs看是否能到达终点。
DOLFAMINGO
·
2020-09-16 07:56
BFS
Codeforce
s Round #Pi (Div. 2) —— D One-Dimensional Battle Ships
题目的意思是:现在有一个长度为n,宽为1的方格,在上面可以放大小为1*a船,然后输入为n,k,a;分别为平地的大小,船的数量,船的长度。一个叫alice的人已经在地图上摆好了船的位置。然后bob总共可以有m次攻击的机会,然后他每次攻击的点为xi,但是alice并不会告诉它有没有打中(也就是说每次都认为他是miss的),问你,bob可以在第几次攻击的时候推测出alice在撒谎,如果推测不出来则输出-
ACMer_hades
·
2020-09-16 06:51
cf
【
codeforce
】A. Potion of Immortality
A.PotionofImmortalitytimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTheworldfamousscientistInnokentiyhasjustsynthesizedthepotionofimmortality.Unfortunately
idealistic
·
2020-09-16 06:54
编程语言
codeforces
==数学and思维==
其他and有趣的题目
Codeforce
s Round #374 (Div. 2) A. One-dimensional Japanese Crossword —— 基础题
题目链接:http://
codeforce
s.com/contest/721/problem/AA.One-dimensionalJapaneseCrosswordtimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputRecentlyAdaltikdiscoveredja
DOLFAMINGO
·
2020-09-16 06:48
基础题
Gym - 100187A A - Potion of Immortality —— 贪心
题目链接:http://
codeforce
s.com/gym/100187/problem/A题解:光题意就想了很久:在最坏情况下的最小兔子数。其实就是至少用几只兔子就一定能找出仙药(答案存在的话)。
DOLFAMINGO
·
2020-09-16 06:42
贪心
CodeForce
s 448C(分治)
题意:有n个长度不一样的木板(竖着放),刷子宽度是1,每次只能横着刷或者竖着刷。求能刷完全部木板的最小次数。题记:我们每次都先打横刷(即在这一组木板中找到最短的木板),每次都与全部打竖刷取最小值。之后递归即可。例如:53122首先打横刷一次,就变成了:42011这时我们递归左边(4,2)+右边(1,1)+1,每次递归的值都要与竖着刷的情况取最小值,就像左边(4,2)的情况,打横刷是3次(两次横一次
夏日橙子
·
2020-09-16 04:44
数据结构与算法
动态规划
动态规划
数据结构
Labs_test1 A - Fedya and Maths 欧拉定理
欧拉定理A-FedyaandMathsTimeLimit:1000MSMemoryLimit:262144KB64bitIOFormat:%I64d&%I64uSubmitStatusPractice
CodeForce
s456BDescriptionFedyastudiesinagymnasium.Fedya'smathshometaskistoc
weixin_30722589
·
2020-09-16 04:32
Codeforce
s894A QAQ
标签:模拟题目题目传送门“QAQ”isawordtodenoteanexpressionofcrying.Imagine“Q”aseyeswithtearsand“A”asamouth.NowDiamondhasgivenBortastringconsistingofonlyuppercaseEnglishlettersoflengthn.Thereisagreatnumberof“QAQ”int
yjjr
·
2020-09-16 03:21
codeforces
模拟
字符串
OI成长历程
【
codeforce
s 894A】QAQ
A.QAQtimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutput"QAQ"isawordtodenoteanexpressionofcrying.Imagine"Q"aseyeswithtearsand"A"asamouth.NowDiamondhasgivenBorta
codancer
·
2020-09-16 02:07
思维
算法--字符串
上一页
45
46
47
48
49
50
51
52
下一页
按字母分类:
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
其他