thenn
thenn
全部文章
未归档
AT刷题题解(1)
BZOJ刷题题解(3)
C++(2)
c++小游戏汇总栏(18)
codeforces刷题题解(3)
CYH整理的算法大全(8)
noip普及组与提高组初赛复赛题目与讲解(2)
qdojclub刷题(4)
ShineEternal的洛谷日报(3)
SOJ刷题题解(4)
USACO(1)
UVA刷题(1)
二分(1)
二分图(3)
初赛(1)
差分约束(1)
快读(1)
打酱油 (1)
打酱油(21)
日常经验 (1)
日常经验(22)
日报(5)
模板(3)
欢迎(1)
洛谷刷题(90)
网页(2)
计蒜客(1)
题解 (2)
题解(52)
归档
标签
去牛客网
登录
/
注册
qaq
welcome!
全部文章
/ 未归档
(共459篇)
回文数判断
注意 for(int c=1;c<=cnt/2;c++) { if(a[c]!=a[cnt-c+1]) { flag=1; ...
误区
2019-07-03
0
396
书的抄写
远古数据AC代码 #include<cstdio> #include<cstring> #include<cmath> using namespace std; int k,m; int a[501],f[501][501],d[501],L[501],R[5...
2019-07-02
0
450
尽可能装满的背包问题
1100: B10-动态规划-集装箱装载(01背包) 时间限制: 1 Sec 内存限制: 128 MB 提交: 5 解决: 5 [提交] [状态] [讨论版] [命题人:外部导入] 题目描述 有一批共n个集装箱要装上艘载重量为c的轮船,其中集装箱i的重量为wi。找出一种最优装载方案,将轮船尽可能装满...
2019-06-16
0
315
2019.6.16完成classstack任务
最终信息 4 ShineEternal 任务完成,账号已注销 120 149 80.537%
2019-06-16
0
310
2019.6.16完成classstack任务
最终信息 4 ShineEternal 任务完成,账号已注销 120 149 80.537%
2019-06-16
0
308
USACO-集合
#include<cstdio> #include<iostream> using namespace std; long long f[400]; int main() { long long n; scanf("%lld",&n); long ...
2019-06-08
0
376
USACO-修理牛棚
#include<cstdio> #include<algorithm> using namespace std; int a[201],b[201]; int main() { int sum=0; int m,s,c; scanf("%d%d%d",&...
2019-06-08
0
355
dij模板
#include<cstdio> #include<vector> #include<queue> using namespace std; struct edge { int to,val; }; priority_queue<pair<int,in...
2019-06-07
0
335
洛谷P1948 [USACO08JAN]电话线Telephone Lines
链接: https://www.luogu.org/problemnew/show/P1948 bfs+剪枝即可 代码: #include<iostream> #include<cstdio> #include<cstring> #include&...
2019-06-05
0
334
list模板题
题面: 设计一个int类型的动态链表L,L中有一个代表当前位置的光标,支持下列操作: insert(x): 在光标前面插入元素x,插入后光标指向新插入的元素x move(d): 如果d为正数,则光标向尾部移动d个位置,如果为负数,则向头部移动 erase(): 删除光标当前指向的元素,完成后光标...
2019-05-28
0
353
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页