主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
Syou
風立ちぬ、いざ生きめやも。
关注
发消息
文章
0
题解
27
发帖
0
笔记
0
Ta的粉丝
86
关注数
0
粉丝数
86
获赞数
10
阅读数
30388
哈夫曼树 题解:C++ priority_queue
C++ #include <iostream> #include <queue> #include <vector> using namespace std; int main(){ int n; while(cin &...
P1382
2023年8月22日 14:36
回复 3
|
赞 0
|
浏览 1.3k
堆栈的使用 题解:C++ stack
C++ #include <iostream> #include <vector> #include <string> #include <stack> using namespace std; int main(){ i...
P1372
2023年9月4日 19:23
回复 0
|
赞 0
|
浏览 1.0k
最简真分数 题解:C++ gcd
C++ #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int gcd(int...
P1180
2023年8月25日 19:42
回复 0
|
赞 0
|
浏览 1.0k
多边形的面积 题解:C++ 鞋带公式
C++ S三角形=0.5∗((x1∗y2+x2∗y3+x3∗y1)−(y1∗x2+y2∗x3+y3∗x1)) 我们代个数进去试试 A:(0, 4) , B:(0, 0) ,...
P1615
2023年8月24日 13:42
回复 0
|
赞 1
|
浏览 884
括号的匹配 题解:C++ <stack>
C++ 分别考虑8种括号 #include <iostream> #include <string> #include <stack> using namespace std; bool isMatched(string str){ ...
P1067
2023年8月22日 11:29
回复 0
|
赞 2
|
浏览 1.4k
A除以B 题解:C++
C++ 注意前导0 #include <iostream> #include <vector> #include <string> using namespace std; int main(){ string AS; ...
P1851
2023年8月20日 17:02
回复 0
|
赞 0
|
浏览 1.0k
Minimum_Sum 题解:C++
C++ 题目可能没有描述清楚 你有一个序列a1,a2,...,an,然后给你一些区间[l,r]。对于每一个区间,你需要找到下式的最小值,对于所有可能的x,∑i=l...r |x-ai| #include <iostream> #include <...
P1910
2023年8月20日 10:34
回复 0
|
赞 0
|
浏览 996
身份证号 题解:C++
C++ 分别处理两个串 #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h>...
P1657
2023年8月18日 23:58
回复 0
|
赞 1
|
浏览 1.0k
字母排序 题解:C++
C++ 注意:stable_sort,否则直接WA,通过率0% #include <iostream> #include <string> #include <vector> #include <algorithm> us...
P2019
2023年8月18日 18:30
回复 0
|
赞 0
|
浏览 1.6k
缺页问题 题解:异或
C++ 异或:异或同一个数2次或者偶数次,那么本身的值不变。 #include <iostream> using namespace std; int main(){ int N; int sum = 0; cin >> N; for...
P1506
2023年8月18日 15:57
回复 0
|
赞 0
|
浏览 1.2k
喝饮料 题解:
C++ 非常经典的贪心算法题 #include <iostream> #include <vector> #include <algorithm> #include <iomanip> using namesp...
P1478
2023年8月18日 12:36
回复 0
|
赞 0
|
浏览 981
IP地址 题解:
C++ 注意:例如127.0.0.1,输出是0x7F000001。十进制转十六进制时注意0 注意:例如127..0.1,输出为Error。不要只判断3个'.','.'之间不能连着 #include <iostream> #in...
P1023
2023年8月17日 13:46
回复 0
|
赞 1
|
浏览 1.5k
矩阵位置 题解:
C++ #include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; int main(){...
P1543
2023年8月17日 12:41
回复 0
|
赞 0
|
浏览 1.0k
这是第几天? 题解:
C++ 注意题目给的样例是YYYY-MM-DD(至少看着很像这样) 实际上是以“-”来分割的 getline(cin, dateS); size_t firstDash = dateS.find("-"); size_t secondDa...
P1542
2023年8月17日 10:54
回复 0
|
赞 0
|
浏览 880
三角形判定 题解:
C++ 首师大人刷首师大机试题 #include <iostream> #include <vector> #include <algorithm> #include <math.h> using namespace ...
P2018
2023年8月16日 19:58
回复 0
|
赞 0
|
浏览 1.1k
字符串转化 题解:
C++ 首师大人刷首师大机试题 #include <iostream> #include <string> using namespace std; int fun(string a){ int sum = 0; for(string::i...
P2020
2023年8月16日 19:33
回复 0
|
赞 1
|
浏览 1.1k
水仙花数 题解:
C++ 感觉写的好复杂啊aaa #include <iostream> #include <string> #include <math.h> #include <vector> using namespace std; ...
P1034
2023年8月16日 14:59
回复 0
|
赞 0
|
浏览 1.1k
大整数加法 题解:
C++ 同样可以AC 注意最高位进位情况 例如:999 999 #include <iostream> #include <string> #include <vector> using namespace std; vo...
P1474
2023年8月15日 21:55
回复 0
|
赞 0
|
浏览 1.3k
Day of Week 题解:
C++ 终于AC了!提交了5遍。分数20->0->0->40->80->100 暴力求解。(公元1年1月1日Monday) #include <iostream> #include <string> #includ...
P1287
2023年8月15日 19:18
回复 0
|
赞 0
|
浏览 1.1k
整数奇偶排序 题解:
C++ 清空vector使用clear() #include <iostream> #include <vector> #include <algorithm> using namespace std; int main(){ v...
P1248
2023年8月15日 11:12
回复 0
|
赞 0
|
浏览 794
1
2
本科学校:首都師範大学
目标学校:北京大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!