Bernard5
Bernard5
全部文章
分类
作业(2)
学习笔记(17)
技术教程(45)
期末应试(57)
未归档(17)
赛后分析(7)
题解(132)
题集(15)
归档
标签
去牛客网
登录
/
注册
some model useful
我亦是行人
TA的专栏
160篇文章
0人订阅
算法竞赛之路
160篇文章
3597人学习
全部文章
(共290篇)
2019年江西师范大学程序设计竞赛暨软院算法组选拔赛
更偏向编程 值得一看 D 字符串匹配 #include <iostream> #include <string> using namespace std; int main() { ios::sync_with_stdio(false), cin.tie(0), co...
思维
水题
数学
2020-05-03
0
727
Game Strategy - “Shopee杯” e起来编程暨武汉大学2020年大学生程序设计大赛决赛G题
来自专栏
倒推决策树。cindy是没有操作空间的。所以需要枚举针对所有情况的alice/bob的选取。然而bob早已看穿了一切。然而alice早已看穿了一切的一切。 因为信息的完全对称,先手是事实上的最终决定者。谁有先手,谁有决定权。 c足够聪明,所以她一定会留下来最能中和的牌 b充分考虑到了这一点 他...
2020-04-26
0
719
小白月赛24
来自专栏
J 建设道路 注意取模,可能为负数时,+=mod再%=mod 代入推导 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 5e5 + 7; const ll mod = ...
2020-04-21
0
661
斐波那契数列的若干性质
来自专栏
蓝桥杯斐波 题目斐波那契数列大家都非常熟悉。它的定义是: 对于给定的整数 n 和 m,我们希望求出: f(1) + f(2) + ... + f(n) 的值。但这个值可能非常大,所以我们把它对 f(m) 取模。 但这个数字依然很大,所以需要再对 p 求模。输入格式 ...
斐波那契
2020-04-13
1
642
牛客练习赛60
来自专栏
A https://ac.nowcoder.com/acm/contest/4853/A题意:优化如下代码到线性阶 int n;cin>>n; int a[n];for(int i=0;i<n;++n)cin>>a[i]; ll ans=0; for(int i=0;i...
2020-03-28
0
621
第八次周练
http://acm.hdu.edu.cn/diy/contest_show.php?cid=36331jxnu2020 03 并查集 Problem Description从前有个老和尚对小和尚讲故事,他说他早上看到一个年轻男子赶着n头牛,在农田里耕种,突然下起了大雨,年轻男子怕牛着凉了,就打算把...
2020-03-24
0
618
计算机研究生上机考试模拟赛五
http://acm.hdu.edu.cn/diy/contest_show.php?cid=36390 能猜对多少呢? Time Limit : 3000/1000ms (Java/Other)Memory Limit : 65535/32768K (Java/Other)Problem Desc...
2020-03-24
0
739
HDU 2069 Coin Change
来自专栏
#include <bits/stdc++.h> using namespace std; typedef long long ll; //dp[i],最多100枚硬币 const int a[5] = {1, 5, 10, 25, 50}; int main() { int n...
2020-03-23
0
721
HDU 2086 A1 = ?
来自专栏
/* 因为:Ai=(Ai-1+Ai+1)/2 - Ci, A1=(A0 +A2 )/2 - C1; A2=(A1 + A3)/2 - C2 , ... => A1+A2 = (A0+A2+A1+A3)/2 - (C1+C2) 2[(A1+A2...
2020-03-22
0
612
小白月赛23 阶乘/质数思想
来自专栏
B 阶乘 最大质因数补丁版 #include <bits/stdc++.h> using namespace std; int main() { int T; cin >> T; while (T--) { int n; ...
数学
2020-03-22
0
881
首页
上一页
20
21
22
23
24
25
26
27
28
29
下一页
末页