51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#FORCE
Codeforces Round #632 (Div. 2) F. Kate and imperfection(思维+贪心+素数筛)
F.Kateandimperfection(思维+贪心+素数筛) 题意:一个集合的imperfection定义为:这个集合中任意一对数的gcd中的最大gcd(e.g.{1,2,3,6} 的imperfection 为3),现在给定一个原始集合长度为n,集...
代码星球
·
2020-12-27
Codeforces
Round
#632
Div.
Kate
Codeforces Round #632 (Div. 2) D-Challenges in school №41(模拟好题)
Challengesinschool№41 学习博客:hereAC_Code; 1#include<bits/stdc++.h>2usingnamespacestd;3typedeflonglongll;4const...
代码星球
·
2020-12-27
Codeforces
Round
#632
Div.
D-Challenges
Codeforces Round #609 (Div. 2)E--K Integers(贪心+二分+树状数组+逆序对)
KIntegers参考博客:https://blog.csdn.net/Q755100802/article/details/103664555 【题意】给定一个1到n的排列,可以交换相邻的两个元素。现在定义一个函数f(x),表示在原排列中,通过交换操作,形成一个1,2,3....x的排列的子串,需要的最小操...
代码星球
·
2020-12-27
Codeforces
Round
#609
Div.
E--K
Codeforces Round #609 (Div. 2)--D. Domino for Young
CodeforcesRound#609(Div.2)--D.DominoforYoung 思路:用黑白相间的棋盘来给他染色( 参照国际象棋棋盘),一个棋子一定是落在一个白色和一个黑色棋点上的,所以统计黑色块和白色块的最小值 AC_Code1#...
代码星球
·
2020-12-27
Codeforces
Round
#609
Div.
--D.
Codeforces Round #609 (Div. 2)---C. Long Beautiful Integer
LongBeautifulInteger 思路:对于n位数来说,全为9一定是beautiful的,所以结果的m一定是等于n的。因为要求第i位于第i+k位相等,所以数的值实际上是取决于前k位的,因为需要大于等于原字符串,所以可以直接取原字符串的前k位,构造出新的字符串b,如果b>=a,就可以直...
代码星球
·
2020-12-27
Codeforces
Round
#609
Div.
---C.
Codeforces Round #609 (Div. 2)--B.Modulo Equality
ModuloEquality 关键:a数组中的数变换后与b数组中的数唯一对应AC_Code1#include<bits/stdc++.h>2usingnamespacestd;3typedeflonglongll;4constintmaxn=2010;5cons...
代码星球
·
2020-12-27
Codeforces
Round
#609
Div.
--B.Modulo
Educational Codeforces Round 68 (Rated for Div. 2)---B
http://codeforces.com/contest/1194/problem/B1/**/2#include<bits/stdc++.h>3usingnamespacestd;45intr[50005],c[50005];6strings[50005];78intmain()9{10intn,m,q...
代码星球
·
2020-12-27
Educational
Codeforces
Round
Rated
for
Codeforces,Topcoder,SGU,Timus,ProjectEuler
dreamoon,知名中国台湾籍ACM选手,此为他的codeforces曲线:关于中间突降的那段,还有个小故事:当时dreamoon已经是世界上的顶级选手,甚至前一场的div1他排名第3!(当时cf的分制和现在不同,所以现在看起来只是个红名)由于他没有拿到过div2的第一名,于是决定一直故意掉分使自己有资格...
代码星球
·
2020-09-08
Codeforces
Topcoder
SGU
Timus
ProjectEuler
Codeforces Round #265 (Div. 2) D. Restore Cube 立方体推断
http://codeforces.com/contest/465/problem/D给定8个点坐标。对于每一个点来说,能够任意交换x。y,z坐标的数值。问说8个点能否够组成立方体。暴力枚举就可以,注意检查立方体姿势不正确会T假设8个点形成一个立方体是这种:找到全部点对之间的最小距离,应等于边的长度L。每一个顶点应该正...
代码星球
·
2020-08-28
Codeforces
Round
#265
Div.
Restore
Codeforces Round #105 D. Bag of mice 概率dp
http://codeforces.com/contest/148/problem/D题目意思是龙和公主轮流从袋子里抽老鼠。袋子里有白老师W仅仅。黑老师D仅仅。公主先抽,第一个抽出白老鼠的胜利,龙每次抽的时候会随机跑出一仅仅老鼠。给出W和D要你求出公主胜利的概率。对于dp[w][d]表示有w仅仅白老鼠d仅仅黑老鼠的情况...
代码星球
·
2020-08-28
Codeforces
Round
#105
Bag
of
Codeforces444A_DZY Loves Physics
DZYLovesPhysicstimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputDZYlovesPhysics,andheenjoyscalculatingdensity.Almostev...
代码星球
·
2020-08-25
Codeforces444A
DZY
Loves
Physics
Codeforces Round #269 (Div. 2) B. MUH and Important Things
It'stimepolarbearsMenshykovandUsladafromthezooofSt.PetersburgandelephantHoracefromthezooofKievgotdowntobusiness.Intotal,thereare n tasksforthedayandea...
代码星球
·
2020-08-25
Codeforces
Round
#269
Div.
MUH
Codeforces Round #257(Div. 2) B. Jzzhu and Sequences(矩阵高速幂)
题目链接:http://codeforces.com/problemset/problem/450/BB.JzzhuandSequencestimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutpu...
代码星球
·
2020-08-25
Codeforces
Round
#257
Div.
Jzzhu
CodeForces B. The least round way(dp)
题目链接:http://codeforces.com/problemset/problem/2/BB.Theleastroundwaytimelimitpertest5secondsmemorylimitpertest64megabytesinputstandardinputoutputstandardoutputTh...
代码星球
·
2020-08-25
CodeForces
The
least
round
way
Codeforces Round #105 (Div. 2) 148C Terse princess(脑洞)
C.Terseprincesstimelimitpertest1secondmemorylimitpertest256megabytesinputstandardinputoutputstandardoutput«Nextplease»,—theprincesscalledandcastanestimatingglan...
代码星球
·
2020-08-25
Codeforces
Round
#105
Div.
148C
首页
上一页
...
2
3
4
5
6
...
下一页
尾页
按字母分类:
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
其他