主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
拉萨小队长
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
14
发帖
0
笔记
0
Ta的粉丝
130
关注数
1
粉丝数
130
获赞数
1
阅读数
6416
猴子报数 题解:自用笔记,数组实现
#include<bits/stdc++.h> using namespace std; int n,m; // 总共n个人,...
P1081
2024年4月26日 18:40
回复 1
|
赞 1
|
浏览 587
上楼梯 题解:dp,注意 2+1与1+2 是两种方式
#include<bits/stdc++.h> using namespace std; int n; int dp[10000005]; int main(){ dp[1]=1,dp[2]=2,dp[3]=4;  ...
P1658
2024年4月27日 16:59
回复 0
|
赞 0
|
浏览 388
二元组整数 题解:使用DFS,输出前2位,应该也可以实现
#include<bits/stdc++.h> using namespace std; int main(){ return 0; }
P1024
2024年4月27日 14:37
回复 0
|
赞 0
|
浏览 415
快速排序 题解:yxc快排模板
void quick_sort(int q[],int l,int r){ if(l>=r) return; int i=l-1,j=r+1,x=q[l+r>>1]; whi...
P1590
2024年4月27日 14:16
回复 0
|
赞 0
|
浏览 520
素数求和 题解:标记法
#include<bits/stdc++.h> using namespace std; int main(){ int sum=0,flag[100]={0}; for(int i=2;i<=100;i++...
P1714
2024年4月26日 23:43
回复 0
|
赞 0
|
浏览 441
素数判定 - 哈尔滨工业大学 题解:,标记法,注意1不是素数
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin>>n){ &n...
P1355
2024年4月26日 23:35
回复 0
|
赞 0
|
浏览 433
找最小数 题解:结构体+sort()
#include<bits/stdc++.h> using namespace std; struct node{ int x,y; }p[100]; bool compare(node a,node b){  ...
P1374
2024年4月26日 22:17
回复 0
|
赞 0
|
浏览 338
全排列 题解:DFS自用笔记,带详细注释
#include<bits/stdc++.h> using namespace std; int card[100]; // 标记手里的字符:0表示此字符还在手里,1表示此字符已出 char res[100];  ...
P1185
2024年4月26日 17:56
回复 0
|
赞 0
|
浏览 534
删除最大最小数 题解:原数组与辅助数组比较,秒解!
#include<bits/stdc++.h> using namespace std; int main(){ int n,a[100]={0},b[100]={0}; cin>>n; ...
P1022
2024年4月25日 14:04
回复 0
|
赞 0
|
浏览 461
国名排序 题解:sort()函数,秒杀
#include<bits/stdc++.h> using namespace std; int main(){ int n;cin>>n; string s[100]; ...
P1217
2024年4月24日 23:02
回复 0
|
赞 0
|
浏览 568
倒杨辉三角 题解:得使用long long类型,不然会出错
#include<bits/stdc++.h> using namespace std; int main(){ long long n,a[100][100]={0}; while(cin>>n){ ...
P1888
2024年4月24日 22:56
回复 0
|
赞 0
|
浏览 419
删除字符串 题解:老老实实,做子串匹配!
#include<bits/stdc++.h> using namespace std; int main(){ char s[100]; gets(s); int len=strle...
P1026
2024年4月24日 22:25
回复 0
|
赞 0
|
浏览 391
查找第K小数 题解:sort()函数+unique()函数,秒杀!
#include<bits/stdc++.h> using namespace std; int main(){ int n, k, a[100]; cin>>n; for...
P1383
2024年4月24日 15:34
回复 0
|
赞 0
|
浏览 487
01序列 题解:bitset()函数,秒杀!
#include<bits/stdc++.h> using namespace std; int main(){ for(int i=0;i<64;i++) ...
P1001
2024年4月23日 22:38
回复 0
|
赞 0
|
浏览 434
本科学校:武汉工程大学
目标学校:清华大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!