主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
A1120161820
这个人很懒,什么都没有写。。。
关注
发消息
文章
0
题解
84
发帖
0
笔记
0
Ta的粉丝
408
关注数
2
粉丝数
408
获赞数
33
阅读数
872841
细菌的繁殖(c++)
本题可以当成一个数学题来做。 将第i天细菌最中间一行的数目记作数列a[i]:a[1] = 1, a[2] = 5, a[3] = 13; 可以得到a[i] = 2*i - 1 第i天细菌总数s[i] = 2*(a[1]+a[2]+...+a[i-1]) + a[i] = 2*...
P1033
2020年3月24日 15:33
回复 1
|
赞 2
|
浏览 13.2k
偷菜时间表(c++)
输入采用scanf("%d:%d", &time.hour, &time.minute)会比较省事 #include<iostream> #include<cstdio> #include<vector...
P1053
2020年7月13日 09:55
回复 1
|
赞 0
|
浏览 10.6k
日期累加(c++)
#include<iostream> #include<cstdio> using namespace std; int days[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool i...
P1446
2020年3月8日 10:06
回复 1
|
赞 0
|
浏览 11.9k
日期类(c++)
#include<iostream> #include<cstdio> using namespace std; int days[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool e...
P1437
2020年3月6日 16:24
回复 2
|
赞 0
|
浏览 11.0k
杨辉三角形(c++)
#include<iostream> using namespace std; int main() { int tr[21][21]; for (int i = 1; i <= 20; i++) { for (int j = 1; j <= 2...
P1062
2020年7月24日 09:46
回复 0
|
赞 2
|
浏览 13.1k
单向公路
这就是一个搜索问题,dfs或者bfs均可 #include<iostream> #include<cstring> using namespace std; bool stat[1001][1001]; bool visited[1001]; v...
P1061
2020年7月24日 09:30
回复 0
|
赞 0
|
浏览 10.5k
求组合数(c++)
#include<iostream> using namespace std; int comb(int n, int r) { if (r == 0) return 1; else if (r == 1) return n; else re...
P1058
2020年7月19日 10:07
回复 0
|
赞 0
|
浏览 9.3k
数字模式的识别(c++)
看到这题,首先想到的是,利用数组存所有可能的数字,数组下标对应数字,元素值对应其出现的次数。但题目中|input_number| <= 2000000,所以这样做带来的空间开销太大了。 于是,换了一种思路,用数组存下所有的数,然后进行升序排列,记录下每个元素出现的次数,并不断更新模...
P1057
2020年7月19日 09:53
回复 0
|
赞 0
|
浏览 9.5k
沙漠储油点(c++)
参考:https://blog.csdn.net/daoqin121/article/details/39321481 首先明确一点:储油点的油都是卡车自己从起点一个个运过来的,即:卡车首先从起点跑若干趟将油运到第一个储油点,然后依次跑若干趟将油运往下一个储油点,最后距离终点500km时...
P1056
2020年7月18日 11:29
回复 0
|
赞 3
|
浏览 10.8k
矩阵相乘
遍历就完事了 #include<iostream> using namespace std; int main() { int a[3][3], b[3][3], c[3][3]; for (int i = 0; i < 3; i++) {...
P1055
2020年7月14日 10:05
回复 0
|
赞 0
|
浏览 8.9k
塑身菜单(c++)
注意:最后是按热量从小到大进行输出 #include<iostream> #include<string> #include<vector> #include<algorithm> using namespace std; s...
P1054
2020年7月14日 09:55
回复 0
|
赞 0
|
浏览 9.0k
学生成绩管理(c++)
注意输入输出格式 #include<iostream> #include<cstdio> #include<vector> using namespace std; typedef struct Node{ string sno; ...
P1052
2020年7月13日 09:32
回复 0
|
赞 0
|
浏览 9.0k
日期计算(c++)
#include<iostream> using namespace std; int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; class Date{ private: int year;...
P1051
2020年3月27日 09:21
回复 0
|
赞 0
|
浏览 9.9k
迭代平方根(c++)
#include<iostream> #include<cstdio> #include<cmath> using namespace std; int main() { double x; cin >> x; doub...
P1050
2020年3月25日 15:02
回复 0
|
赞 0
|
浏览 12.2k
猴子吃桃(c++)
#include<iostream> using namespace std; int main() { int n; int ans = 1; cin >> n; for (int i = 1; i < n; i++) { ans...
P1049
2020年3月25日 14:47
回复 0
|
赞 1
|
浏览 11.7k
自由落体(c++)
#include<iostream> #include<cstdio> using namespace std; int main() { int m, n; cin >> m >> n; double num = m, ...
P1048
2020年3月25日 14:41
回复 0
|
赞 1
|
浏览 10.5k
分数求和(c++)
#include<iostream> #include<cstring> using namespace std; int main() { int n; cin >> n; int* a = new int[n]; int* b...
P1047
2020年3月25日 14:21
回复 0
|
赞 0
|
浏览 11.9k
完数(c++)
#include<iostream> #include<vector> using namespace std; int main() { int n; cin >> n; vector<int> vct; for (...
P1046
2020年3月25日 14:14
回复 0
|
赞 0
|
浏览 10.9k
平方和与倒数和(c++)
#include<iostream> #include<cstdio> using namespace std; int main() { int a, b, c; double ans = 0.0; cin >> a >>...
P1045
2020年3月25日 13:51
回复 0
|
赞 1
|
浏览 11.4k
阶乘和(c++)
#include<iostream> using namespace std; int main() { int n; cin >> n; long long ans = 0, num = 1; for (int i = 1; i <= ...
P1044
2020年3月25日 11:29
回复 0
|
赞 0
|
浏览 9.1k
1
2
3
...
5
本科学校:北京理工大学
目标学校:北京理工大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!