主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
小李122333
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
35
发帖
0
笔记
0
Ta的粉丝
134
关注数
0
粉丝数
134
获赞数
55
阅读数
24550
二叉树 题解:c++
#include <bits/stdc++.h> using namespace std; int main(){ int x,y; while(cin>>x>>y){ while(x!=y){ if(x>y) x/=2;...
P1233
2024年1月17日 17:27
回复 1
|
赞 4
|
浏览 1.1k
斐波那契数列 题解:
#include <bits/stdc++.h> using namespace std; int main(){ vector<long long> dp(71); dp[0] = 1; dp[1] = 1; dp[2] = 2; for(...
P1111
2024年3月6日 08:29
回复 0
|
赞 0
|
浏览 519
字符游戏 题解:C++ map
#include <bits/stdc++.h> using namespace std; int main(){ map<char,int> mp; int n; string s; cin>>n>>s; for(i...
P1520
2024年3月3日 16:42
回复 0
|
赞 1
|
浏览 459
默契考验 题解:
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; while(n--){ int a,b,c; cin>>a>>b&g...
P1873
2024年3月3日 16:16
回复 0
|
赞 2
|
浏览 537
矩阵位置 题解:
#include using namespace std; #include <bits/stdc++.h> using namespace std; int main(){ int n; int i,j; while(cin>>...
P1543
2024年3月3日 15:30
回复 0
|
赞 0
|
浏览 503
怎么借书 题解:
#include<bits/stdc++.h> using namespace std; int main() { int n,m=0; cin>>n; for(int i=1; i<=n; i++) { ...
P2004
2024年3月3日 15:29
回复 0
|
赞 0
|
浏览 443
成绩排序 题解:c++ stable_sort函数解决
#include <bits/stdc++.h> using namespace std; struct node{ string name; int score; }; int cmp1(node n1,node n2){ return ...
P1151
2024年1月14日 19:42
回复 2
|
赞 1
|
浏览 1.1k
查找第K小数 题解:C++ set容器自动去重
#include<bits/stdc++.h> using namespace std; int main() { int n; while (cin >> n) { set<int> s; ...
P1383
2024年2月28日 17:11
回复 0
|
赞 2
|
浏览 733
吃糖果 题解:动态规划
#include <bits/stdc++.h> using namespace std; long long dp[21]; int main(){ dp[1]=1; dp[2]=2; int n; for(int i=3;i<21;i++){ ...
P1197
2024年1月24日 17:33
回复 0
|
赞 0
|
浏览 689
最长公共子序列 题解:动态规划问题AC
#include <bits/stdc++.h> using namespace std; #define N 1001 int dp[N][N]; int main(){ string s1,s2; while(cin>>s1){ cin&g...
P1731
2024年1月21日 20:00
回复 0
|
赞 1
|
浏览 812
最大上升子序列和 题解:动态规划问题
#include <bits/stdc++.h> using namespace std; int a[1001]; int dp[1001]; int main(){ int n; while(cin>>n){ for(int i=0;i&l...
P1257
2024年1月21日 19:20
回复 0
|
赞 1
|
浏览 665
最大序列和 题解:普通做法 &注意long long AC100%
#include <bits/stdc++.h> using namespace std; int main(){ int n; while(cin>>n){ long long sum = 0; long long res = INT_MI...
P1172
2024年1月21日 17:41
回复 0
|
赞 2
|
浏览 874
N阶楼梯上楼问题 题解:动态规划问题
#include <bits/stdc++.h> using namespace std; long long dp[91]; int main(){ dp[1]=1; dp[2]=2; int n; for(int i=3;i<91;i++){ ...
P1413
2024年1月21日 15:59
回复 0
|
赞 2
|
浏览 610
魔咒词典 题解:代码较简洁版
#include <bits/stdc++.h> using namespace std; //凡是字符串可能含空格或者换行的,用getline(cin,s)、gets(s)、fget是(字符数组名,字符数组最大值,stdin)之前,检查前面缓冲区是否需要getchar()...
P1339
2024年1月20日 18:21
回复 0
|
赞 1
|
浏览 414
魔咒词典 题解:map建立双向映射
#include <bits/stdc++.h> using namespace std; int main(){ map<string ,string>mp; int n; while(true){ char line[100]; ge...
P1339
2024年1月20日 17:57
回复 0
|
赞 2
|
浏览 618
0和1的个数 题解:代码相对来说简洁
#include <bits/stdc++.h> using namespace std; int main(){ int count1 = 0,count0 = 32; int n; cin>>n; while(n>0){ int ...
P1008
2024年1月20日 11:24
回复 0
|
赞 2
|
浏览 813
哈夫曼树 题解:优先队列 + 迭代求带权路径和
#include <bits/stdc++.h> using namespace std; int main(){ //迭代求带权路径和 int n,leaf; while(cin>>n){ priority_queue<int>...
P1382
2024年1月20日 10:27
回复 0
|
赞 2
|
浏览 701
合并果子 题解:优先队列
#include <bits/stdc++.h> using namespace std; struct node{ int x; node(int a){ x=a; } }; bool operator<(const node &a,c...
P1544
2024年1月18日 23:16
回复 0
|
赞 1
|
浏览 808
二叉树遍历 题解:c++注意超时问题
#include <bits/stdc++.h> using namespace std; string s; int len; typedef struct node{ char data; struct node *lchild; struct node...
P1161
2024年1月17日 15:33
回复 0
|
赞 3
|
浏览 1.3k
二叉树的建立和遍历 题解:C++
#include <bits/stdc++.h> using namespace std; typedef struct node{ char data; struct node *lchild,*rchild; }*BiTree; void PreCreat...
P1109
2024年1月17日 12:24
回复 0
|
赞 4
|
浏览 1.1k
1
2
本科学校:云南大学
目标学校:云南大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!