主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
为欢几何
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
16
发帖
0
笔记
0
Ta的粉丝
134
关注数
1
粉丝数
134
获赞数
0
阅读数
11070
最大连续子序列 题解:
#include<bits/stdc++.h> using namespace std; long long dp[1000010]; long long a[1000010]; long long maxx; long long s = 0, d = 0; lon...
P1334
2024年4月15日 19:10
回复 0
|
赞 0
|
浏览 649
北邮2019 最短路径 Floyd:wrong error50%
//Floyd模板 #include<bits/stdc++.h> using namespace std; #define INF 0x3f3f3f3 const int maxn = 105; int mpt[maxn][maxn]; int edge[maxn...
P1655
2024年4月15日 11:35
回复 1
|
赞 0
|
浏览 635
迷宫 题解:AC
//迷宫问题求起点到终点的最短路径(自己写的代码) #include<bits/stdc++.h> using namespace std; struct node { int x; int y; &nbs...
P1563
2024年4月9日 23:24
回复 2
|
赞 0
|
浏览 779
Hanoi塔问题 题解:注意输出格式,相邻输出之间有3个空格
//汉诺塔输出每一个步骤,五个一换行 #include<bits/stdc++.h> using namespace std; int step;//记录移动步数 void Hanoi(int n, char a, char b, char c) { ...
P1082
2024年4月10日 09:46
回复 0
|
赞 0
|
浏览 774
哈夫曼编码 题解:通过率50%,哪种情况没考虑到呢?
//输出字符串最佳无前缀可变长度编码的位长度 #include<bits/stdc++.h> using namespace std; int main() { string s; while(cin >&...
P1562
2024年4月8日 16:17
回复 2
|
赞 0
|
浏览 556
二叉搜索树 - 复旦2020 题解:Time Limit Exceeded 90% 有什么办法可以缩短时间呢
#include<bits/stdc++.h> using namespace std; int temp[100001]; struct Tree { int data; struct Tree* lchild; struct Tree* ...
P996
2024年4月8日 09:36
回复 3
|
赞 0
|
浏览 753
哈夫曼树 题解:最简单易懂的思路,AC
//哈夫曼树,输出所有结点的值与权值的乘积之和 #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin >> n) { int ...
P1382
2024年4月8日 10:39
回复 2
|
赞 0
|
浏览 1.0k
二叉搜索树 题解:AC,建立二叉搜索树以及比较两个二叉树是否相同
//判断不同的输入序列是否能组成相同的二叉搜索树 #include<bits/stdc++.h> using namespace std; struct Tree { int data; struct Tree* l...
P1317
2024年4月3日 09:46
回复 0
|
赞 0
|
浏览 577
单链表 题解:小伙伴们可以帮我检查一下哪里有问题吗?0%
#include<bits/stdc++.h> using namespace std; struct Node { int Element; // 节点中的元素为整数类型 struct Node * Next; //...
P1015
2024年3月24日 14:47
回复 2
|
赞 0
|
浏览 563
链表合并 题解:0%,不知道哪里有问题,谢谢小伙伴们帮我看看
#include<bits/stdc++.h> using namespace std; struct node{ int n; struct node *next; }; //创建链表 struct node*...
P1025
2024年3月24日 16:17
回复 2
|
赞 0
|
浏览 657
击鼓传花 题解:循环链表,AC
#include<bits/stdc++.h> using namespace std; struct node { int n; struct node *next; }; //创建循环链表 struct no...
P1018
2024年3月24日 15:42
回复 0
|
赞 0
|
浏览 530
查找学生信息 题解:新学的用map来解决,AC
#include<bits/stdc++.h> using namespace std; int main() { int n, m; while(cin >> n >> m){ ...
P1177
2024年3月21日 15:57
回复 0
|
赞 0
|
浏览 719
成绩排序 题解:AC
#include<bits/stdc++.h> using namespace std; struct Student { string name; int grade, id; } stu[1000005]; b...
P1151
2024年3月13日 15:49
回复 0
|
赞 0
|
浏览 583
旋转矩阵 - 北航 题解:注意输出角度后面还要有一个换行
#include<stdio.h> int same(int b[105][105], int a[105][105], int n) { for (int i = 1;i <= n;i++) &nb...
P1377
2024年3月10日 16:03
回复 1
|
赞 0
|
浏览 1.2k
倒杨辉三角 题解:int改为longlong就可以AC了
#include<stdio.h> int main(){ int n; while(scanf("%d",&n)!=EOF){ long long a[105][105]={0}; if(n==0) return...
P1888
2024年3月10日 15:42
回复 0
|
赞 0
|
浏览 443
负二进制 题解:AC
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin >> n) { if(n == 0) ...
P1097
2024年3月10日 12:20
回复 0
|
赞 0
|
浏览 673
本科学校:武汉大学
目标学校:武汉大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!