主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
blackevil
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
10
发帖
0
笔记
0
Ta的粉丝
179
关注数
0
粉丝数
179
获赞数
5
阅读数
30815
使用第二个数组进行辅助记录(C++)
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; const int maxn=1e7+10; int N=0,M=0,K=0,Q=0...
P1677
2023年2月13日 16:47
回复 0
|
赞 0
|
浏览 3.2k
计算字符串编辑距离通解方法
原理: 给出一个初始化矩阵,逐位比较两个字符串,待修改的矩阵对应为行,被比较的矩阵对应位列 若字符串对应的位相同,则让该矩阵位直接让这一位的矩阵的等于左上对角的值 否则,有三种情况,分别是: ①:等于上面矩阵位加一 ②:等于左上角矩阵位加一 ③:等于左边矩阵位加一 最后该矩阵...
P1532
2023年2月13日 11:19
回复 0
|
赞 0
|
浏览 3.6k
题目有点问题,应该是如果存在一组不能借,就输出-1和组号并退出程序,如果都能借,就在最后输出一个零
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; const int maxn=1e7+10; int N=0,M=0,K=0,Q=0...
P1598
2023年2月12日 21:47
回复 0
|
赞 0
|
浏览 2.8k
大阶乘超详细解析
用整型数组来保存大阶乘结果。 原理:因为根据乘法的原理两个数相乘,这样可以保证每次相乘的数能够被int容纳下 (假设都是三位整数)可以看作a分别乘上b的个位,然后只保留结果的个位赋给数组,将剩余的前面的所有位赋给进位数 ,然后将a乘上b的十位,并将刚才各位进位的数加上这次的结...
P1174
2023年2月12日 10:21
回复 0
|
赞 1
|
浏览 3.2k
暴力检索法找出完数和盈数
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; const int maxn=1e7+10; int N=0,M=0,K=0; str...
P1170
2023年2月11日 22:08
回复 0
|
赞 0
|
浏览 3.2k
直接搜索,让路的数组为2500,不用再单独考虑最后一个点
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; int N=0,M=0,K=0; string str,a,b; int strshu,x...
P1739
2023年2月11日 15:35
回复 0
|
赞 1
|
浏览 3.0k
关于‘7’一个较短解法
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; int n=0; string str,a,b; int strshu,x,y; ...
P1198
2023年2月11日 14:19
回复 0
|
赞 1
|
浏览 3.3k
运用字符串函数stoi直接转为整数再相加
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; int n=0; string a,b; int sum=0; vector&...
P1003
2023年2月11日 09:41
回复 0
|
赞 1
|
浏览 3.1k
弗洛伊德算法求出各点间的最短距离和最佳路径
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; int n,m,S,T,A; int mp[1001][1001];//存储图像 stri...
P1666
2023年2月9日 20:26
回复 0
|
赞 1
|
浏览 2.7k
运用高斯鞋带公式解决任意多边形面积求解问题
#include <bits/stdc++.h> using namespace std; int n=0; int sum1=0,sum2=0; int main() { ios::sync_with_stdio(false);...
P1615
2023年2月4日 19:25
回复 0
|
赞 0
|
浏览 2.7k
本科学校:中国矿业大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!