主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
我与代码的故事
天天原神启动不训练,考研还想上岸?
关注
发消息
文章
0
题解
105
发帖
0
笔记
12
Ta的粉丝
69
关注数
2
粉丝数
69
获赞数
117
阅读数
61251
全排列(dfs搜索) 题解:
#include<bits/stdc++.h> using namespace std; string str, res; int n; bool st[10]; void dfs(int u) { if(u >= n) { cout ...
P1185
2024年5月30日 19:26
回复 0
|
赞 1
|
浏览 543
A+B问题 (看数据范围不会爆longlong)题解:
#include<bits/stdc++.h> using namespace std; typedef long long LL; LL a, b; int main() { cin >> a >> b; LL ans...
P1000
2024年4月20日 23:47
回复 1
|
赞 1
|
浏览 782
排序 题解:
#include<bits/stdc++.h> using namespace std; const int N = 1010; int a[N]; int n; int main() { cin >> n; fo...
P1010
2024年4月20日 00:12
回复 1
|
赞 2
|
浏览 597
后缀子串排序(C++) 题解:
#include<bits/stdc++.h> using namespace std; string str; int main() { while(cin >> str) { vector<string...
P1294
2024年5月26日 11:03
回复 0
|
赞 1
|
浏览 525
猴子报数(C++模拟) 题解:
#include<bits/stdc++.h> using namespace std; int n, s, m; bool st[110]; int main() { while(cin >> n >> s >> m...
P1081
2024年5月25日 12:31
回复 0
|
赞 1
|
浏览 614
判断是否是整数(C++)题解:
#include<bits/stdc++.h> using namespace std; double n; int main() { while(cin >> n) { if(n - (int)n == 0) cout <<...
P1031
2024年5月24日 18:34
回复 0
|
赞 1
|
浏览 533
百鸡问题(枚举就行了) 题解:
#include<bits/stdc++.h> using namespace std; int n; int main() { while(cin >> n) { for(int i = 0; i <= 100; i ++) ...
P1348
2024年5月23日 00:06
回复 0
|
赞 1
|
浏览 519
最大序列和(75%的巨坑!!!(贪心 ))题解:
题目中序列的值应该也是用long long存(用int存只能过75%),题目只给了序列和的数据范围,太折磨人了,害我WA好几次 #include<bits/stdc++.h> using namespace std; typedef long long L...
P1172
2024年5月17日 00:08
回复 1
|
赞 2
|
浏览 626
字符个数(C++) 题解:
#include<bits/stdc++.h> using namespace std; string str; int a, b, c, d; int main() { getline(cin, str); for(int i = 0; i ...
P1042
2024年5月21日 23:48
回复 0
|
赞 1
|
浏览 426
分数求和 题解:
#include<bits/stdc++.h> using namespace std; int n; int main() { cin >> n; double ans = 0; int zi = 2, mu = 1; fo...
P1047
2024年5月20日 23:40
回复 0
|
赞 1
|
浏览 424
abc(C++) 题解:
#include<bits/stdc++.h> using namespace std; int main() { for(char a = '0'; a <= '9'; a ++) for(char b = '0'; b <= '9'; b +...
P1165
2024年5月20日 00:23
回复 0
|
赞 1
|
浏览 558
统计字符(C++) 题解:
#include<bits/stdc++.h> using namespace std; string a, b; int main() { while(getline(cin, a)) { if(a == "#") return 0; ...
P1320
2024年5月20日 00:07
回复 0
|
赞 2
|
浏览 486
简单背包问题(一维01背包, 题目中体积和价值是一样的) 题解:
注意是多组测试输入 (没注意就WA一次) #include<bits/stdc++.h> using namespace std; const int N = 1010; int dp[N], w[N]; int n, m; int main() { ...
P1035
2024年5月19日 00:17
回复 0
|
赞 1
|
浏览 395
旋转方阵(模拟) 题解:
#include<bits/stdc++.h> using namespace std; const int N = 110; int n, cnt = 1; int res[N][N]; int main() { cin >> n; ...
P1216
2024年5月18日 23:37
回复 0
|
赞 1
|
浏览 812
日期类(模拟) 题解:
#include<bits/stdc++.h> using namespace std; int month[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int n; int y, m, d; ...
P1437
2024年5月16日 23:26
回复 0
|
赞 1
|
浏览 526
最大公约数1(空间复杂度O(1)) 题解:
没开数组,优化了内存,时间复杂度O(n) #include<bits/stdc++.h> using namespace std; int n; int main() { int a = INT_MAX, b = -1; scan...
P1426
2024年5月16日 00:40
回复 0
|
赞 1
|
浏览 498
二叉树的建立和遍历(模拟) 题解:
#include<bits/stdc++.h> using namespace std; int cnt; string str; typedef struct Tree{ char v; Tree *l, *r; }Tree; Tree *b...
P1109
2024年5月16日 00:21
回复 0
|
赞 1
|
浏览 611
细菌的繁殖(优雅前缀和) 题解:
#include<bits/stdc++.h> using namespace std; typedef long long LL; const int N = 1010; int n; LL ans; LL s[N]; //前缀和 void s_init...
P1033
2024年5月15日 00:58
回复 0
|
赞 2
|
浏览 614
平方和与倒数和(n项和、n项平方和公式秒了) 题解:
n项倒数和公式: 欧拉常数是无理数,该公式只能用于估算,不可取; n项和: 等差数列:n *(a1 + an) / 2 n项平方和: #include<bits/stdc++.h> using namespac...
P1045
2024年5月15日 00:43
回复 0
|
赞 3
|
浏览 634
平均值(C++ cout直接输出就行,不用特判,最短代码) 题解:
C++中std::cout输出浮点数默认精度是6位有效数字 #include<bits/stdc++.h> using namespace std; int a, b; int main() { double res; scan...
P1132
2024年5月13日 23:40
回复 0
|
赞 1
|
浏览 539
1
2
3
4
...
6
本科学校:星穹铁道职业技术学院
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!