主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
我与代码的故事
天天原神启动不训练,考研还想上岸?
关注
发消息
文章
0
题解
105
发帖
0
笔记
12
Ta的粉丝
69
关注数
2
粉丝数
69
获赞数
117
阅读数
61266
偷菜时间表(模拟) 题解:
#include<bits/stdc++.h> using namespace std; int n; int m, h; void gets_res() { h = (h + 13) % 24; h = h + (m + 15) / 60; //加...
P1053
2024年5月13日 23:31
回复 0
|
赞 1
|
浏览 429
素数判定 (试除法 O(n*sqrt(n))题解:
1000的数据量可以过 #include <bits/stdc++.h> using namespace std; int a, b; bool cheak(int x) { for(int i = 2; i <= x / i; i ...
P1102
2024年5月10日 23:48
回复 0
|
赞 1
|
浏览 520
迷宫(C++11 bfs宽搜 附详细注释) 题解:
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> PII; const int N = 110; int n, m; char g[N][N]; //存图 in...
P1563
2024年5月10日 23:39
回复 0
|
赞 1
|
浏览 676
大整数加法(大数问题py直接秒了) 题解:
while True: try: a, b = map(int, input().split()) print(a + b) except: break
P1474
2024年5月10日 00:03
回复 0
|
赞 1
|
浏览 544
质因数个数(数论)题解:
#include<bits/stdc++.h> using namespace std; int n; int divide(int n) { int cnt = 0; for(int i = 2; i <= n / i; i ++) ...
P1156
2024年5月8日 23:55
回复 0
|
赞 1
|
浏览 506
整数奇偶排序(多组测试输入) 题解:
#include<bits/stdc++.h> using namespace std; const int N = 15; int num[N]; int og[N], os[N]; int cnt, cnt1, cnt2; int main() { ...
P1248
2024年5月8日 23:43
回复 0
|
赞 1
|
浏览 476
阶乘和(优雅的递归) 题解:
注意数据范围,递归函数里的x也会爆int #include <bits/stdc++.h> using namespace std; typedef long long LL; int n; LL ans; LL dfs(LL x) { ...
P1044
2024年5月8日 00:31
回复 0
|
赞 1
|
浏览 492
素数判定 (试除法)- 哈尔滨工业大学 题解:
#include <bits/stdc++.h> using namespace std; int n; bool cheak(int x) { if(x <= 0 || x == 1) return false; for(int i = ...
P1355
2024年5月8日 00:15
回复 0
|
赞 1
|
浏览 546
动态查找问题(题目没给x的数据范围,斗胆试了一下) 题解:
如果x的数据范围很大就得用哈希表了,但这里没必要 #include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; bool st[N]; int n, m; int main()...
P1477
2024年5月6日 23:41
回复 0
|
赞 1
|
浏览 472
括号匹配(C++ string栈) 题解:
#include <bits/stdc++.h> using namespace std; string str; int main() { cin >> str; string stk1, stk2; for(int i = 0;...
P1501
2024年5月6日 23:30
回复 0
|
赞 1
|
浏览 519
打印日期(用前缀和写了一下 附注释) 题解:
#include<bits/stdc++.h> using namespace std; int y, d; int month[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int s[13]; ...
P1410
2024年5月6日 00:29
回复 0
|
赞 1
|
浏览 807
查找学生信息2(结构体数组) 题解:
#include <bits/stdc++.h> using namespace std; const int N = 1010; int n, m; struct student{ string id; string name; string g...
P1476
2024年5月5日 23:56
回复 0
|
赞 1
|
浏览 521
最简真分数(最大公约数) 题解:
最大公约数是1,说明两个数互质,也就是最简真分数 #include<bits/stdc++.h> using namespace std; const int N = 1010; int n; int a[N]; int main() { ...
P1180
2024年5月5日 00:27
回复 0
|
赞 1
|
浏览 473
杨辉三角形(模拟 - 不输出第一行) - 西北工业大学 题解:
#include <bits/stdc++.h> using namespace std; const int N = 30; int n; int res[N][N]; void get_triangle() { for(int i = 1; i &l...
P1392
2024年5月5日 00:08
回复 0
|
赞 1
|
浏览 520
成绩的等级(选择分支结构) 题解:
#include<bits/stdc++.h> using namespace std; int s; int main() { cin >> s; if(s >= 90) puts("A"); els...
P1038
2024年5月4日 00:54
回复 0
|
赞 1
|
浏览 479
旋转矩阵(模拟 - 注意多组测试输入--第一次交没注意过了80%) - 北航 题解:
#include<bits/stdc++.h> using namespace std; const int N = 20; int a[20][20], b[20][20]; int n; int cheak() { bool t = true;...
P1377
2024年5月4日 00:47
回复 0
|
赞 1
|
浏览 731
博学楼的阶梯(模拟 思路清晰易懂 附注释) 题解:
优化了内存,没有开数组 #include <bits/stdc++.h> using namespace std; int T; int main() { cin >> T; while(T --) { in...
P1005
2024年5月2日 00:29
回复 0
|
赞 1
|
浏览 537
日期差值(格式化输入) 题解:
#include<bits/stdc++.h> using namespace std; const int months[] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; bool ch...
P1290
2024年5月2日 00:00
回复 0
|
赞 2
|
浏览 706
求S(n) (同余定理)题解:
( a * b) % m = ((a % m) * (b % m)) % m #include <bits/stdc++.h> using namespace std; int n; int main() { while(cin >>...
P1500
2024年4月29日 23:10
回复 0
|
赞 1
|
浏览 600
国名排序(C++) 题解:
#include <bits/stdc++.h> using namespace std; vector<string> res; int n; int main() { string s; while(cin >>...
P1217
2024年4月29日 23:00
回复 0
|
赞 1
|
浏览 646
1
2
3
4
5
6
本科学校:星穹铁道职业技术学院
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!