主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
DestinyCares+++
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
29
发帖
43
笔记
0
Ta的粉丝
142
关注数
0
粉丝数
142
获赞数
5
阅读数
57657
字符串删除 题解:
#include<iostream> #include<cstring> #include<string> #include<algorithm> #include<vector> using namespace std; ...
P1856
2024年3月21日 17:14
回复 0
|
赞 0
|
浏览 436
数组排序 题解:isdigit()函数判断该字符串是否为数字字符串
#include<iostream> #include<cstring> #include<string> #include<vector> #include<queue> #include<stack> #i...
P1798
2024年3月20日 18:57
回复 0
|
赞 0
|
浏览 452
北邮2019 最短路径 题解:
#include<iostream> #include<vector> #include<queue> #include<climits> #include<string> #include<cstring> ...
P1655
2024年3月16日 15:43
回复 0
|
赞 0
|
浏览 706
最大公共子串 题解:dp
#include<iostream> #include<cstring> #include<string> #include<vector> using namespace std; const int maxn = 105; c...
P1855
2024年3月15日 15:46
回复 0
|
赞 0
|
浏览 428
简单背包问题 题解:
#include<iostream> #include<cstring> #include<map> #include<string> using namespace std; const int maxn = 200; int dp...
P1035
2024年3月14日 15:16
回复 0
|
赞 0
|
浏览 703
最小邮票数 题解:01背包
#include<iostream> #include<cstring> using namespace std; const int maxn = 105; int v[maxn]; int dp[maxn][maxn]; int main() {...
P1164
2024年3月13日 18:31
回复 0
|
赞 0
|
浏览 705
最长连号 题解:
#include<iostream> #include<string> #include<algorithm> #include<climits> #include<vector> using namespace std; ...
P1571
2024年3月12日 18:55
回复 0
|
赞 0
|
浏览 556
随机数 题解:
#include<iostream> #include<string> #include<random> using namespace std; int a[21] = {0}; int b[6]; int main() { ...
P1009
2024年2月29日 21:49
回复 0
|
赞 0
|
浏览 943
字符分类 题解:标记法
#include<iostream> #include<cstring> #include<string> using namespace std; int a[105] = {0}; int main() { &n...
P1016
2024年2月23日 17:11
回复 0
|
赞 0
|
浏览 686
字符移动 题解:标记法
#include<iostream> #include<string> #include<cstring> using namespace std; int a[105] = { 0 }; int main() { ...
P1012
2024年2月23日 16:12
回复 0
|
赞 1
|
浏览 903
哈夫曼树 题解:直接优先队列
#include<iostream> #include<string> #include<queue> using namespace std; int main(){ int n; &nbs...
P1382
2024年2月23日 15:37
回复 0
|
赞 1
|
浏览 1.1k
查找第K小数 题解:sort加优先队列
#include<iostream> #include<string> #include<queue> #include<algorithm> using namespace std; int a[1005]; int main(...
P1383
2024年2月22日 20:52
回复 0
|
赞 0
|
浏览 740
谁是你的潜在朋友 题解:map集合与数组
#include<iostream> #include<string> #include<map> using namespace std; map<int,int> mymap; int a[205]; int main() {...
P1225
2024年2月22日 19:15
回复 0
|
赞 0
|
浏览 870
日期差值 题解:
关键是取日期 #include<iostream> #include<string> using namespace std; int date[2][13] = { {0,31,28,31,30,31,30,31,31,30,31,30,31},//平...
P1290
2024年2月20日 16:30
回复 0
|
赞 0
|
浏览 878
单词替换 题解:字符数组
#include<iostream> #include<string> using namespace std; const int maxn = 1e5 + 10; string s[maxn]; int main() { &...
P1196
2024年2月19日 17:09
回复 0
|
赞 0
|
浏览 673
删除字符串 题解: replace与find函数
#include<iostream> #include<string> using namespace std; int main() { string str; getline(...
P1026
2024年2月19日 16:30
回复 0
|
赞 0
|
浏览 682
最大连续子序列 题解:(记录下标)
b[i][0] 下标为i的元素的最大连续子序列的起始位置 若dp[i-1]+a[i]<a[i] ,b[i][0]=i;(不连续) ...
P1334
2024年2月16日 11:20
回复 0
|
赞 1
|
浏览 736
数组逆置 题解:
#include<bits/stdc++.h> using namespace std; int main(){ string str; while(cin>>str){ &nbs...
P1358
2024年2月14日 23:19
回复 0
|
赞 0
|
浏览 553
最长递减子序列 题解:
#include<iostream> #include<cstdio> #include<vector> using namespace std; int a[100]; int dp[100];//定义以a[i]结尾的最长递减序列长度 ve...
P1836
2024年2月14日 23:16
回复 0
|
赞 1
|
浏览 917
计算两个矩阵的乘积 题解:
#include<iostream> using namespace std; int a[5][5]; int b[5][5]; int c[5][5]; int main() { for (int i = 1; i &l...
P1363
2024年2月13日 14:29
回复 0
|
赞 0
|
浏览 639
1
2
本科学校:中国矿业大学
目标学校:南京大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!