主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
老猫
小学渣
关注
发消息
文章
0
题解
60
发帖
0
笔记
0
Ta的粉丝
361
关注数
1
粉丝数
361
获赞数
43
阅读数
524554
一模一样
#include <iostream> #include <string> #include <string.h> #include<algorithm> #include <vector> #include <m...
P1307
2021年1月15日 20:39
回复 1
|
赞 0
|
浏览 9.4k
还是sort
定义一个类 将日志行拆分为 名称 时间 运行时间,然后进行排序 #include <bits/stdc++.h> using namespace std; struct T { string name; string time; string ru...
P1227
2021年1月12日 22:27
回复 2
|
赞 6
|
浏览 13.3k
递归大法
1、前序遍历的第一元素是整个二叉树的根节点 2、中序遍历中根节点的左边的元素是左子树,根节点右边的元素是右子树 3、后序遍历的最后一个元素是整个二叉树的根节点 #include <iostream> #include <string> #inc...
P1401
2021年1月19日 15:56
回复 1
|
赞 7
|
浏览 8.3k
简洁
先将字母提取出来,然后对字母进行排序,在将排序后的字符串写回原字符串 #include <iostream> #include <string> #include <string.h> #include<algorithm> u...
P1255
2021年1月13日 10:28
回复 1
|
赞 4
|
浏览 11.4k
话说这题不是让写一个类吗?
不知道是不是我理解错了 应该是让我们用类的做法 #include<iostream> #include <string> using namespace std; class date { public: int month[13]; ...
P1437
2021年1月11日 21:23
回复 2
|
赞 2
|
浏览 8.9k
一点点变形
#include<iostream> #include<string> #include<string.h> #include<vector> #include<stdio.h> #include <queue&g...
P1224
2021年1月26日 15:24
回复 7
|
赞 0
|
浏览 8.9k
打卡
教程代码 //1161 //通不过的代码,主要是creat_tree部分,写法不一样 #include<iostream> #include<string> #include<cstring> #include<stack> ...
P1098
2021年1月20日 16:40
回复 1
|
赞 1
|
浏览 9.7k
通不过的可能原因之一
代码成品是这样子 分享一下,今天提交了好几次,没成功,该在牛客网提交,直接成功 后面发现是题目没说清楚,输入应该是连续输入, 所以将输入改为连续输入即可。 有点无语。。。 第一步先将十进制转为二进制 第二步将二进制逆序,因为第一部已经逆序了,所以这步不用做 ...
P1176
2021年1月9日 21:31
回复 1
|
赞 1
|
浏览 11.8k
字符串函数真香
#include <bits/stdc++.h> using namespace std; int main() { int n; string s; while(cin>>s) { cin>>n; for(int ...
P1387
2021年1月15日 16:05
回复 2
|
赞 1
|
浏览 11.3k
本身算因子
#include<cstdio> #include <vector> #include <string> #include <string.h> #include<iostream> #include <queue...
P1020
2021年2月1日 16:57
回复 0
|
赞 0
|
浏览 8.7k
简洁
#include<cstdio> #include <vector> #include <string> #include <string.h> #include<iostream> #include<algori...
P1820
2021年1月31日 15:59
回复 0
|
赞 1
|
浏览 8.9k
打卡
#include<cstdio> #include <vector> #include <string> #include <string.h> #include<iostream> #include<algori...
P1817
2021年1月31日 12:51
回复 0
|
赞 0
|
浏览 9.1k
简洁
#include<cstdio> #include <vector> #include <string> #include <string.h> #include<iostream> #include<algori...
P1798
2021年1月31日 10:00
回复 0
|
赞 2
|
浏览 9.3k
记录
原本用创建链表的方法创建第三个链表,后面发现会内存溢出,故用指针指向已经创建了的 #include <bits/stdc++.h> using namespace std; struct node { int date; struct node *next;...
P1025
2021年1月29日 16:10
回复 0
|
赞 1
|
浏览 7.8k
简单思路
这道题多了求路径 路径和求欢迎度的思想差不多,就是用前一个路径的状态推后一个路径的状态 只需考虑能放进去且最优情况时,路径才会发生变化。路径变化在上一个基础上变化。 #include <bits/stdc++.h> using namespace std; ...
P1567
2021年1月28日 12:09
回复 0
|
赞 1
|
浏览 9.8k
打卡
#include <bits/stdc++.h> using namespace std; const int maxn=100+5; int a[maxn],b[maxn]; int main() { int n; while(cin>>n) ...
P1256
2021年1月27日 15:24
回复 0
|
赞 0
|
浏览 8.5k
打卡
#include <bits/stdc++.h> using namespace std; const int maxn=1e4+5; int a[maxn],b[maxn]; long long maxx; int main() { int n; whil...
P1334
2021年1月27日 10:48
回复 0
|
赞 0
|
浏览 7.7k
打卡
#include <bits/stdc++.h> using namespace std; int main() { int n; long long a[100]; a[1]=1,a[2]=2; while(cin>>n) { ...
P1413
2021年1月26日 20:17
回复 0
|
赞 0
|
浏览 8.2k
打卡
#include <bits/stdc++.h> using namespace std; const int maxn=505; int len[maxn]; vector<int>a[maxn]; priority_queue <int ...
P1566
2021年1月26日 17:22
回复 0
|
赞 0
|
浏览 7.4k
签到
#include<iostream> #include<string> #include<string.h> #include<vector> #include<stdio.h> #include <queue&g...
P1344
2021年1月26日 11:57
回复 0
|
赞 0
|
浏览 9.1k
1
2
3
本科学校:华南理工大学
目标学校:华南理工大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!