cake pattern_51CTO博客
Cuts the cake Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3890    Accepted Submission(s): 2476 Problem Description Ice cream took a
原创 2023-02-20 10:19:37
59阅读
B - Cake HPU专题训练(-1)最少要将蛋糕切成多少块. S...
原创 2022-10-18 16:50:03
110阅读
1. A piece of cake(易事情)2. Break a leg(祝好运)3. Don't count your chickens before they hatch(不要过
原创 2023-10-27 15:16:51
110阅读
同学们~ CakeTime Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3337    Accepted Submission(s): 1734Problem Description一次生日
原创 2022-11-22 00:01:11
42阅读
公式 p+q-gcd(p,q)就是所求值#include#include#includeusing namespace std;int gcd(int n,int m){ if(m==0) return n; gcd(m,n%m);}int main(){ int m,n; while(cin>>m>>n) { cout<<m+n-gcd(m,n)<<endl; }}
转载 2012-04-28 17:48:00
57阅读
HDU 5355 Cake 更新后的代码: 今天又一次做这道题的时候想了非常多种思路 最后最终想出了自觉得完美的思路,结果却超时 真的是感觉自己没救了 最后加了记忆化搜索,AC了 好了先说下思路吧。不知道大家住没注意m<=10 我们能够把大部分的数据写成成对的形式比如n=27 m=6的这组数据 第1
转载 2017-06-29 15:44:00
45阅读
2评论
公式 p+q-gcd(p,q)就是所求值 #include<iostream> #include<algorithm> #include<cstring> using namespace std; int gcd(int n,int m) { if(m==0) return n; gcd(m,n%m); } int main() { int m,
原创 2023-02-24 10:13:18
48阅读
看做一块蛋糕,要分给(Q-P)与P人,一直这样往下分,直到(Q-P)等于1时将蛋糕分为P快就可以,然后将所有的加在一起     #include #include int gcd(int a,int b) {     r
原创 2022-08-23 08:18:44
56阅读
(pattern) 匹配 pattern 并获取这一匹配。所获取的匹配可以从产生的 Matches 集合得到,在VBScript 中使用 SubMatches 集合,在JScript 中则使用 $0…$9 属性。要匹配圆括号字符,请使用 ‘\(’ 或 ‘\)’。 (?:pattern) 匹 配 ...
转载 2016-08-30 22:12:00
188阅读
(pattern) 匹配 pattern 并获取这一匹配。所获取的匹配可以从产生的 Matches 集合得到,在VBScript 中使用 SubMatches 集合,在JScript 中则使用 $0…$9 属性。...
转载 2016-08-30 22:13:00
161阅读
2评论
#include int gcd(int m, int n) { return m==0?n:gcd(n % m, m); } int main() { int m, n; while(scanf("%d%d",&m,&n)!=EOF) { printf("%d\n", m + n - gcd(m, n)); } return 0; } 题解:考虑切蛋糕为q块需要q刀,p块需要p刀,但是两者切痕有重叠,重叠部分为两者的最大公约数,所以问题就迎刃而解了。
转载 2013-12-27 15:09:00
48阅读
http://acm.zju.edu.cn/onlinejudge/sho
原创 2022-06-16 06:26:59
69阅读
Cake
原创 2022-11-09 18:53:29
45阅读
CakeTime Limit:4 Seconds Memory Limit:65536 KBAlice and Bob like e
转载 2015-10-11 18:22:00
20阅读
在上一篇[Cake] 2. dotnet 全局工具 cake中介绍了通过.Net Core 2.1 的全局工具dotnet tool命令来简化cake的安装和使用。因为是全局安装,则无法适应每个项目对特定版本的要求。随着.Net Core 3.0中增加的对本地工具(项目级别)的支持,使得这一问题得以解决。1. cake的安装和还原# 创建一个本地的工具清单文件 dotnet new tool-ma
转载 2021-05-16 21:44:06
165阅读
2评论
其实找规律可以想出来 规律可以这么解释:...
转载 2016-07-20 10:13:00
90阅读
题意: 给一个首尾相连的字符串,求有多少区间长度不大于 sss 且至少有一个字符 eee。
原创 2023-02-03 09:56:20
56阅读
ZOJ3537 Cake 传送门:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3537 题意: 给你几何形状的蛋糕,你需要按照顶点来切蛋糕,每次切蛋糕会产生一个贡献,$val=cost_{i, j} |x_i + x_j|
原创 2021-07-29 17:38:17
84阅读
题目大意:蛋糕上有2*N个樱桃,切一刀,使得蛋糕两半的樱桃个数相同,不能切到樱桃。解题思路:两个循环,暴力解决。ac代码:#include using namespace std;int n, x[105], y[105], jud, cnt1, cnt2;int main(){ while (scanf("%d", &n)!=EOF && n){ for (
原创 2021-12-01 15:59:21
256阅读
Problem G. Birthday CakeBackgroundLucy and Lily are twins. Today is their birthday. Mother buys a birthday cake for them.Now we put the cake onto a De...
qt
原创 2021-07-16 15:03:02
311阅读
  • 1
  • 2
  • 3
  • 4
  • 5