Deep_Dark_FAntasy♂
Deep_Dark_FAntasy♂
全部文章
基本数论、组合...
Codeforces(3)
博弈论(3)
并查集(2)
数据结构(2)
未归档(176)
深度优先搜索、广度优先搜索、搜索剪枝(8)
线性dp、背包问题、区间dp(15)
题解(12)
归档
标签
去牛客网
登录
/
注册
VISITOR_OVO 的博客
Welecome to my blog
全部文章
/ 基本数论、组合数学(排列组合,容斥等)
(共1篇)
素数判断
先看题目:https://ac.nowcoder.com/acm/problem/14399解题思路:因为数据量并不大( ),所以用试除法(O(√n))不会超时代码: #include<bits/stdc++.h> using namespace std; int factor[110]...
素因子
素数判断
试除法
2020-06-29
0
627