主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
我与代码的故事
天天原神启动不训练,考研还想上岸?
关注
发消息
文章
0
题解
105
发帖
0
笔记
12
Ta的粉丝
69
关注数
2
粉丝数
69
获赞数
117
阅读数
61251
字符串排序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
|
赞 1
|
浏览 555
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
|
赞 1
|
浏览 377
二叉树(北京邮电大学)(传统建树) 题解:
#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
|
浏览 452
判断二叉树是否对称 (指针建树)题解:
#include<bits/stdc++.h> using namespace std; string data; // 定义二叉树节点 typedef struct Tree { char val; Tree *left...
P1551
2024年8月13日 12:31
回复 0
|
赞 1
|
浏览 544
水仙花数 题解:
#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
|
赞 2
|
浏览 848
猴子吃桃(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
|
浏览 531
小偷的背包(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
|
浏览 391
特殊排序(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
|
赞 1
|
浏览 474
统计同成绩学生人数(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
|
浏览 422
字符串内排序(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
|
赞 1
|
浏览 471
矩阵翻转 题解:
#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
|
浏览 520
十进制和二进制(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
|
赞 1
|
浏览 2.0k
反序输出 (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
|
浏览 401
身份证校验 (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
|
赞 1
|
浏览 546
大整数排序(大数问题用python)题解:
while True: try: N = int(input()) nums = [] for i in range(N): x = int(input()) nums.ap...
P1412
2024年6月9日 17:13
回复 0
|
赞 1
|
浏览 442
斐波那契数列(动态规划,注意数据范围long long附注释) 题解:
从第三项开始 每一项都是前三项的和 #include<bits/stdc++.h> using namespace std; const int N = 110; long long dp[N]; //第n项的值 int n; int mai...
P1111
2024年6月8日 22:56
回复 0
|
赞 1
|
浏览 603
反序相等 (C++)题解:
#include<bits/stdc++.h> using namespace std; bool cheak(int x) { string num = to_string(x); reverse(num.begin(), num.end()); ...
P1461
2024年6月5日 18:56
回复 0
|
赞 2
|
浏览 521
排序 - 华科(C++ 11) 题解:
#include<bits/stdc++.h> using namespace std; int n; int main() { while(cin >> n) { vector<int> res; for(i...
P1399
2024年6月2日 20:32
回复 0
|
赞 1
|
浏览 557
负二进制 题解:
负数取余的规则: |小| % |大| = |小| 符号同前 |大| % |小| = |余| 符号同前 举例: 3%4 = 3 ; -3%4 = -3 ; -3%-4 = -3 ; 3%-4 = 3; 5%3 = 2 ; 5%-3 = 2 ;-5%-3 = -2 ; -5%3 = -2...
P1097
2024年6月1日 20:37
回复 2
|
赞 1
|
浏览 552
吃糖果(和斐波那契数列递推差不多) 题解:
#include<bits/stdc++.h> using namespace std; typedef long long LL; int n; LL dp[30]; int main() { dp[1] = 1, dp[2] = 2; f...
P1197
2024年6月2日 13:23
回复 0
|
赞 1
|
浏览 596
1
2
3
...
6
本科学校:星穹铁道职业技术学院
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!