主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
chiangtau
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
5
发帖
0
笔记
0
Ta的粉丝
221
关注数
0
粉丝数
221
获赞数
12
阅读数
25433
一步一步封装函数实现
#include<bits/stdc++.h> using namespace std; //二叉树定义结构 typedef struct node{ char data; struct node *lchild, *rchild; }*BST;...
P1317
2022年7月23日 14:28
回复 1
|
赞 1
|
浏览 5.6k
一个菜鸡写的题解
#include<bits/stdc++.h> using namespace std; const int maxn = 1e5 + 5; int a[maxn]; int dp[maxn]; int n; int main(){ while(~...
P1664
2022年8月9日 18:06
回复 0
|
赞 1
|
浏览 4.6k
换个思路或许更方便
#include<bits/stdc++.h> using namespace std; const int maxn = 100 + 5; string dp[maxn][maxn]; string s1,s2; int main(){ while...
P1730
2022年8月9日 17:40
回复 0
|
赞 5
|
浏览 4.5k
感觉有点歧异,但是能AC
#include<bits/stdc++.h> using namespace std; const int maxn = 30+5; const int INF = 0x3f3f3f3f; char mpt[maxn][maxn]; int dir[4][2...
P1126
2022年8月1日 20:01
回复 0
|
赞 2
|
浏览 4.4k
套公式题解(C++dp)
#include<bits/stdc++.h> using namespace std; const int MAX = 1005; int dp[MAX][MAX]; string a,b; //dp[i][j]是指字符串1中的前i个字符和字符串2中的前j个字符的编...
P1532
2022年7月11日 17:50
回复 0
|
赞 3
|
浏览 6.3k
本科学校:北京邮电大学
目标学校:清华大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!