上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: #include<bits/stdc++.h> using namespace std; int check(int n) { for(int i=2;i*i<=n;i++)//因数不超过根号n if(n%i==0) return false; return true; }//时间复杂度为根号n i 阅读全文
posted @ 2021-11-14 20:57 前排吃瓜 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 运算规则 模运算与基本四则运算有些相似,但是除法例外。其规则如下: (a + b) % p = (a % p + b % p) % p (1) (a – b) % p = (a % p – b % p) % p (2) (a * b) % p = (a % p * b % p) % p (3) (a 阅读全文
posted @ 2021-11-09 09:43 前排吃瓜 阅读(451) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int gcd(int a,int b) { while(a%b!=0) { int c=a%b; a=b; b=c; } return b;//若a%b==0 则b为答案 } int num[1000]; i 阅读全文
posted @ 2021-11-06 09:37 前排吃瓜 阅读(26) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fyf18845165207/article/details/82729654 阅读全文
posted @ 2021-11-03 07:43 前排吃瓜 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wkq0825/article/details/82255984 https://www.cnblogs.com/aminxu/p/4686332.html 阅读全文
posted @ 2021-11-03 07:36 前排吃瓜 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 首先,新建一个C/C++的codeblocks项目。具体步骤如下: 1. 新建一个工程(project),注意路径中不要包含中文,否则后面断点调试时会出现问题 2. 直接选择空工程 3. 选择C或者C++项目即可 4. 点开工作空间(workspace)中的Source文件夹,即可对文件进行编辑 断 阅读全文
posted @ 2021-06-19 09:37 前排吃瓜 阅读(702) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-26 14:53 前排吃瓜 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 申明变量 Dim a AS Integer/double/Single 循环语句 For J=1 To 100 Step 1 Next J 选择语句 If 条件 Then 语句组1 else …… End If and 与or 或xor 抑或not 非&符号是作字符串连接用的,比如"abc" & " 阅读全文
posted @ 2019-02-27 17:38 前排吃瓜 阅读(367) 评论(2) 推荐(0) 编辑
摘要: spfa未调过 阅读全文
posted @ 2018-12-14 15:10 前排吃瓜 阅读(125) 评论(0) 推荐(0) 编辑
摘要: /*SPFA算法有两个优化算法 SLF 和 LLL: SLF:Small Label First 策略,设要加入的节点是j,队首元素为i,若dist(j) x则将i插入到队尾,查找下一元素,直到找到某一i使得dist(i) using namespace std; int n,m,s;//起点终点开头 int u[200005],v[200005],w[200005]; int first... 阅读全文
posted @ 2018-11-08 19:40 前排吃瓜 阅读(226) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页