superzcl
superzcl
全部文章
未归档
ACM2018 and 2019 Exercise(28)
ACM模板(23)
AIstudy(1)
BFS(8)
C++学习笔记(20)
codeforces(13)
DFS(7)
hash哈希(2)
HDU100题(23)
Java 学习笔记(5)
KMP(2)
Python 学习笔记(8)
Python与爬虫(2)
sort+结构体(3)
STL(25)
string(1)
web设计(2)
二分和尺取(6)
人工智能学习(1)
位运算(2)
分治和递归(3)
前缀后缀差分打表(2)
动态规划(19)
博弈论(1)
图论(6)
康托和逆康托展开(1)
排序算法(2)
数学思维题(13)
数论(5)
最小生成树(3)
最短路(2)
栈和队列(9)
模拟(3)
算法与数据结构(38)
算法与数据结构学习笔记(14)
线段树(5)
贪心(13)
软件安装(7)
速筛与快速幂(5)
面向对象(2)
归档
标签
去牛客网
登录
/
注册
成龙大侠
千里之行,始于足下
全部文章
/ 未归档
(共85篇)
逆康拓展开
#include <cstdio> #include <vector> #include <algorithm> using namespace std; int fact( int x ) { if( x == 0 || x == 1 ) ...
2018-05-04
0
436
逆康拓展开
#include <cstdio> #include <vector> #include <algorithm> using namespace std; int fact( int x ) { if( x == 0 || x == 1 ) ...
2018-05-04
0
377
筛选法求素数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #include <cstdio> #include <cmath> using namespace std; i...
速筛
2018-04-29
0
398
筛选法求素数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #include <cstdio> #include <cmath> using namespace std; i...
速筛
2018-04-29
0
346
康拓展开
#include <cstdio> #include <cstring> using namespace std; int factor( int x ) { int pro = 1; for( int i=1; i <=x; i++ ) { ...
康拓
2018-04-29
0
395
A的B次方取余
#include <cstdio> using namespace std; int main() { const int c = 1000; int a, b; int i; int outcom; /*乘积的取余等于取余的乘积*/ w...
2018-04-14
0
412
E - 最小周长
#include <cstdio> #include <cmath> using namespace std; int main() { int s; int a, b; int i, minum; scanf("%d", &s ); ...
2018-04-14
0
333
E - 最小周长
#include <cstdio> #include <cmath> using namespace std; int main() { int s; int a, b; int i, minum; scanf("%d", &s ); ...
2018-04-14
0
330
快速幂模板(求末尾数字)
#include <stdio.h> int powmod( int x, int c ); int main() { int number; /*做幂运算的数*/ int c; /*要用来取余的数*/ scanf("%d%d...
2018-04-14
0
360
K - 数组中和等于K的数对
给出一个整数K和一个无序数组A,A的元素为N个互不相同的整数,找出数组A中所有和等于K的数对。例如K = 8,数组A:{-1,6,5,3,4,2,9,0,8},所有和等于8的数对包括(-1,9),(0,8),(2,6),(3,5)。 Input 第1行:用空格隔开的2个数,K N,N为A数...
2018-04-13
0
464
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页