主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
我与代码的故事
天天原神启动不训练,考研还想上岸?
关注
发消息
文章
0
题解
111
发帖
0
笔记
12
Ta的粉丝
69
关注数
2
粉丝数
69
获赞数
180
阅读数
66131
石油储藏 (dfs)题解:
#include<bits/stdc++.h> using namespace std; const int N = 110; char g[N][N]; bool st[N][N]; int n, m, cnt; void dfs(int x, int y...
P1564
2025年1月21日 16:51
回复 0
|
赞 0
|
浏览 26
找最小数(sort函数) 题解:
#include<bits/stdc++.h> using namespace std; typedef pair<int, int> PII; const int N = 1010; PII s[N]; int n; bool cmp(PII ...
P1374
2025年1月19日 15:31
回复 0
|
赞 1
|
浏览 28
成绩排序(函数sort) - 华科 题解:
#include<bits/stdc++.h> using namespace std; const int N = 1010; int n; struct student{ string name; int age; int score; }s[...
P1404
2025年1月18日 15:40
回复 0
|
赞 1
|
浏览 42
采药(01背包) 题解:
#include<bits/stdc++.h> using namespace std; const int N = 1010; int t[N], w[N], dp[N]; int T, m; int main() { cin >> T &...
P1086
2025年1月17日 17:00
回复 0
|
赞 1
|
浏览 63
最短路 (朴素Dijkstra)题解:
稠密图用朴素Dijkstra算法,用链式前向星存储图 #include<bits/stdc++.h> using namespace std; const int N = 110; int g[N][N]; int dist[N]; boo...
P1565
2025年1月13日 15:59
回复 0
|
赞 2
|
浏览 80
剩下的树(差分) 题解:
#include<bits/stdc++.h> using namespace std; const int N = 1e4 + 10; int n, m; int b[N]; int main() { while(cin >> n) ...
P1175
2025年1月11日 15:07
回复 0
|
赞 1
|
浏览 82
字符串排序3(C++) 题解:
#include<bits/stdc++.h> using namespace std; int n; bool cmp(string a, string b) { return a.size() < b.size(); } int ma...
P1261
2024年5月29日 19:51
回复 1
|
赞 2
|
浏览 609
Coincidence 题解:
#include<bits/stdc++.h> using namespace std; const int N = 110; char str1[N], str2[N]; int dp[N][N]; int main() { //dp[i][j]表示两...
P1293
2024年8月18日 12:45
回复 0
|
赞 2
|
浏览 409
二叉树(北京邮电大学)(传统建树) 题解:
#include<bits/stdc++.h> using namespace std; typedef struct Tree{ char val; Tree *left, *right; }Tree; Tree *build(string...
P1561
2024年8月18日 12:06
回复 0
|
赞 0
|
浏览 482
判断二叉树是否对称 (指针建树)题解:
#include<bits/stdc++.h> using namespace std; string data; // 定义二叉树节点 typedef struct Tree { char val; Tree *left...
P1551
2024年8月13日 12:31
回复 0
|
赞 2
|
浏览 585
水仙花数 题解:
#include <bits/stdc++.h> using namespace std; int n, m; bool cheak(int x) { int a = x / 100; int b = (x / 10) % 10; int c = x...
P1034
2024年4月25日 23:31
回复 1
|
赞 5
|
浏览 955
猴子吃桃(C/C++动态规划) 题解:
#include<bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int n; int dp[N]; //定义:第n + 1 - i天剩的桃子 int main() { dp[1...
P1049
2024年7月15日 19:57
回复 0
|
赞 1
|
浏览 573
小偷的背包(01背包) 题解:
把重量看成体积 #include<bits/stdc++.h> using namespace std; const int N = 1010; int dp[N], v[N]; int n, s; int main() { cin ...
P1123
2024年7月14日 19:03
回复 0
|
赞 1
|
浏览 443
特殊排序(C++) 题解:
#include<bits/stdc++.h> using namespace std; int n; vector<int> a; int main() { while(cin >> n) { a...
P1400
2024年7月13日 09:59
回复 0
|
赞 2
|
浏览 523
统计同成绩学生人数(C++) 题解:
#include<bits/stdc++.h> using namespace std; unordered_map<int, int> st; int n; int main() { while(cin >> n, n) { ...
P1329
2024年7月8日 14:49
回复 0
|
赞 1
|
浏览 463
字符串内排序(C++) 题解:
#include<bits/stdc++.h> using namespace std; string str; int main() { while(cin >> str) { sort(str.begin(), str.end()...
P1360
2024年6月17日 22:03
回复 0
|
赞 2
|
浏览 505
矩阵翻转 题解:
#include<bits/stdc++.h> using namespace std; const int N = 1010; int a[N][N]; int n; int main() { cin >> n; for(int ...
P1134
2024年6月16日 19:17
回复 0
|
赞 1
|
浏览 567
十进制和二进制(Py秒了,巨坑:多组测试输入题目没说) 题解:
大数问题直接py while True: try: a = int(input()) a = format(a, 'b') b = a[::-1] b = int(b, 2) ...
P1176
2024年6月16日 18:39
回复 0
|
赞 2
|
浏览 2.2k
反序输出 (C++)题解:
#include<bits/stdc++.h> using namespace std; string str; int main() { while(cin >> str) { reverse(str.begin(), str....
P1155
2024年6月11日 22:13
回复 0
|
赞 1
|
浏览 426
身份证校验 (C++ ID Corrent没绷住)题解:
没注意ID Corrent(ID Correct)WA一次 #include<bits/stdc++.h> using namespace std; int v[20] = {7, 9, 10, 5, 8, 4, 2, 1, 6, ...
P1722
2024年6月10日 18:37
回复 0
|
赞 3
|
浏览 642
1
2
3
...
6
本科学校:星穹铁道职业技术学院
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!