主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
damowanghwj
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
34
发帖
0
笔记
0
Ta的粉丝
89
关注数
0
粉丝数
89
获赞数
2
阅读数
18436
计算表达式 题解:
#include<bits/stdc++.h> using namespace std; string str; int GetPriority(char ch){ if(ch == '#') return 0; else if(ch == '$') ...
P1281
2024年3月27日 18:13
回复 1
|
赞 0
|
浏览 461
日期累加 题解:c++ 易于看懂 和 理解版本
/*日期累加*/ #include<bits/stdc++.h> using namespace std; bool is_Leap(int year){//判断闰年 if(year % 400 == 0 || (year % 100 != 0 &&am...
P1446
2024年3月30日 18:27
回复 0
|
赞 0
|
浏览 656
南京理工-括号匹配 题解:使用stack 轻松解决
#include<bits/stdc++.h> using namespace std; int GetPriority(char ch){ if(ch == '(' || ch == ')') return 1; if(ch == '<' || ...
P1838
2024年3月30日 17:19
回复 0
|
赞 0
|
浏览 495
重复数字 题解:超详细c++
#include<bits/stdc++.h> using namespace std; const int N = 1e5 + 5;//不知道具体多少数以及数的大小 就尽量设置大一些 int a[N]; int flag[N]; string str; int...
P1904
2024年3月28日 11:04
回复 0
|
赞 0
|
浏览 410
最大公共子串 题解:高分篇 dp 多了一个记录最长公共子串条件
#include<bits/stdc++.h> using namespace std; int dp[105][105]; int main(){ string s1,s2; cin >> s1 >> s2; i...
P1855
2024年3月27日 23:18
回复 0
|
赞 0
|
浏览 493
堆排序 题解:c++ 小根堆
#include<bits/stdc++.h> using namespace std; priority_queue<int,vector<int>,greater<int>> pQue; int main(){ i...
P2012
2024年3月25日 21:21
回复 0
|
赞 0
|
浏览 430
幂次方 题解:运用二分快速幂思想和同余模定理即可。
#include<bits/stdc++.h> using namespace std; long long x,n; const int N = 233333; long long pow(long long n){ long long ans = 1...
P1017
2024年3月24日 21:35
回复 0
|
赞 0
|
浏览 591
二元组整数 题解:已AC
#include<bits/stdc++.h> using namespace std; struct Point{ int a; int b; bool operator < (const Point &po) const{...
P1024
2024年3月24日 21:04
回复 1
|
赞 0
|
浏览 693
IP地址 题解:判断点的个数以及每个位置是不是数字 且数字范围是不是正确
#include<bits/stdc++.h> using namespace std; string trans(int n){//10进制转16进制 string s = ""; int num = 2; while(num--){ ...
P1023
2024年3月24日 20:41
回复 0
|
赞 0
|
浏览 599
复数 题解:c++struct 和 运算符重载实现
#include<bits/stdc++.h> using namespace std; struct Complex{ double real; double image; Complex operator + (const Complex ...
P1021
2024年3月24日 19:40
回复 0
|
赞 0
|
浏览 384
01序列 题解:输出0-63的六位二进制即可
#include<bits/stdc++.h> using namespace std; string trans(int n){ string s = ""; for(int i = 0; i < 6;i++){ ...
P1001
2024年3月24日 17:22
回复 0
|
赞 0
|
浏览 745
小H的搬寝室 题解:数据量少 可以暴力法
#include<bits/stdc++.h> using namespace std; const int maxn = 1005; int weight[maxn]; int main() { int n, w; while (scanf(&...
P1141
2024年3月23日 15:58
回复 0
|
赞 0
|
浏览 485
子串计算 题解:vector + struct + sort
/*E - 子串计算*/ #include<bits/stdc++.h> using namespace std; struct Info{ string s; int num; Info(string s,int num) : s(s),n...
P1249
2024年3月23日 10:33
回复 0
|
赞 0
|
浏览 652
死神来了 题解:抽屉原理
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin >> n >> m) { n = (n >>...
P1723
2024年3月22日 16:38
回复 0
|
赞 0
|
浏览 452
Aconly时间戳 题解:c++
#include<bits/stdc++.h> using namespace std; int mday[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(){ int n; while(...
P1545
2024年3月22日 15:37
回复 0
|
赞 0
|
浏览 411
设计密码 题解:
#include<bits/stdc++.h> using namespace std; char ch[7] = {'~','!','@','#','%','^','$...
P1548
2024年3月22日 15:18
回复 0
|
赞 0
|
浏览 453
字符串区间翻转 题解:ac80的同学应该是没有设置多组输入,这题也没说多组输入啊
#include<bits/stdc++.h> using namespace std; const int N = 1e7+5; int arr[N]; int dp[N]; //char s[N]; int main() { int n...
P1642
2024年3月22日 12:45
回复 0
|
赞 0
|
浏览 695
成绩排序 题解:用vector记得重置
#include<bits/stdc++.h> using namespace std; struct student{ string name; int grade; int seq; }; vector<student>...
P1151
2024年3月17日 20:37
回复 0
|
赞 0
|
浏览 589
滑雪 题解:动态规划+dfs
#include<bits/stdc++.h> using namespace std; int dp[105][105]; int a[105][105]; bool isVisit[105][105]; int dir[4][2] = {0,1,1,0,0,-1,...
P1568
2024年3月16日 16:11
回复 0
|
赞 0
|
浏览 618
石油储藏 题解:dfs求解
#include<bits/stdc++.h> using namespace std; int m,n; bool isVisit[105][105] = {false}; char a[105][105]; int dir[8][2] = {0,1,1,1,1,0...
P1564
2024年3月16日 15:19
回复 0
|
赞 0
|
浏览 560
1
2
本科学校:NIT
目标学校:华中农业大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!