主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
James
这个人很懒,什么都没有写...
关注
发消息
文章
1
题解
81
发帖
0
笔记
0
Ta的粉丝
344
关注数
0
粉丝数
344
获赞数
28
阅读数
698106
简单模拟
#include <iostream> using namespace std; const int maxn=10005; int a[maxn],b[maxn],c[maxn]; char x[maxn],y[maxn]; int n; int add(int ...
P1475
2021年3月3日 18:21
回复 0
|
赞 0
|
浏览 7.3k
差分+前缀和
#include <iostream> #include <algorithm> #include <stdio.h> #include <string.h> using namespace std; /* ...
P1209
2021年2月1日 20:26
回复 3
|
赞 3
|
浏览 10.6k
01背包记录物品 注意一个都放不开的特殊情况
#include <iostream> #include <algorithm> #include <string.h> #include <vector> using namespace std; const int maxn =...
P1567
2021年2月20日 14:29
回复 0
|
赞 0
|
浏览 7.0k
二进制状态枚举
#include <iostream> #include <algorithm> #include <math.h> using namespace std; const int maxn=1e5; int s[maxn]; int v,...
P1123
2021年2月20日 13:34
回复 0
|
赞 0
|
浏览 7.7k
二进制状态枚举法
#include <iostream> #include <algorithm> #include <math.h> using namespace std; const int maxn=1e5; int s[maxn]; int v,...
P1035
2021年2月20日 13:06
回复 0
|
赞 0
|
浏览 7.7k
fn=fn-1+fn-2 斐波那契
#include <iostream> using namespace std; long long f[100]; int n; int main(){ f[1]=1; f[2...
P1197
2021年2月20日 11:08
回复 0
|
赞 0
|
浏览 7.0k
fn=fn-1+fn-2 注意longlong
#include <iostream> using namespace std; long long f[100]; int n; int main(){ f[1]=1; f[2...
P1413
2021年2月20日 11:06
回复 0
|
赞 0
|
浏览 6.7k
拓扑排序 注意可能有重复数据
#include <iostream> #include <string.h> #include <queue> using namespace std; const int maxn=505; int g[maxn][maxn]; int ...
P1566
2021年2月20日 10:13
回复 0
|
赞 0
|
浏览 9.9k
dijkstra
#include <iostream> #include <math.h> #include <string.h> using namespace std; const int maxn=105; int g[maxn][maxn]; int...
P1286
2021年2月19日 19:43
回复 0
|
赞 0
|
浏览 8.1k
Dijkstra 可能有重边
#include <iostream> #include <algorithm> #include <string.h> using namespace std; const int maxn=105; int g[maxn][maxn]; ...
P1565
2021年2月18日 20:07
回复 0
|
赞 0
|
浏览 7.8k
克鲁斯卡尔
#include <iostream> #include <algorithm> using namespace std; const int maxn=1e3; int f[maxn]; struct node{ &nbs...
P1341
2021年2月18日 19:37
回复 0
|
赞 0
|
浏览 7.0k
克鲁斯卡尔
#include <iostream> #include <algorithm> using namespace std; const int maxn=1e3; int f[maxn]; struct node{ &nbs...
P1311
2021年2月18日 19:34
回复 0
|
赞 0
|
浏览 7.6k
克鲁斯卡尔
#include <iostream> #include <algorithm> using namespace std; const int maxn=1e3; int f[maxn]; struct node{ &nbs...
P1312
2021年2月18日 18:20
回复 0
|
赞 0
|
浏览 7.2k
BFS求连通块个数
#include<iostream> #include<string.h> #include<queue> using namespace std; struct node{ int x,y; }; ...
P1564
2021年2月3日 15:46
回复 0
|
赞 0
|
浏览 8.7k
注意充满的条件
#include<iostream> #include<string.h> #include<queue> using namespace std; struct node{ int x,y;  ...
P1126
2021年2月2日 18:22
回复 0
|
赞 1
|
浏览 8.6k
注意有多个出口
#include<iostream> #include<string.h> #include<queue> using namespace std; struct node{ int x,y;  ...
P1563
2021年2月2日 15:24
回复 0
|
赞 0
|
浏览 9.2k
边建Trie树边删多余前缀
两种情况 case1 当前字符串是前面某一个更长串的前缀:判断一下它的son[p][0~25]是否有不为0的元素 case2 当前字符串的前缀是前面某一个短的字符串:建立当前字符串结点路径上如果某一个结点cnt!=0说明这里有前缀...
P1098
2021年2月2日 13:14
回复 0
|
赞 0
|
浏览 8.9k
简单模拟
#include <iostream> #include <string.h> using namespace std; typedef struct node{ int data; &nbs...
P1396
2021年2月1日 19:23
回复 0
|
赞 0
|
浏览 7.9k
简单模拟
#include <iostream> #include <string.h> using namespace std; typedef struct node{ int data; &nbs...
P1411
2021年2月1日 19:20
回复 0
|
赞 0
|
浏览 7.2k
二叉树是否对称的同类题
对称二叉树中我们从根节点左右两边出发 分别向反方向判断 bool travel(BiTree l,BiTree r){ if(l==NULL&&r==NULL){ &n...
P1317
2021年2月1日 18:47
回复 0
|
赞 1
|
浏览 9.4k
1
2
3
4
5
本科学校:山东财经大学
目标学校:吉林大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!